javascript get character from string code example
Example 1: javascript get character from string
const str = "Hello World!";
const chars = [...str];
var chars2 = str.split("");
Example 2: javascript get first character of string
var str="Hello Folks!"
var firstStringChar = str.charAt(0);
Example 3: javascript get character from string
const str = "Hello World";
const firstCharacter = str.charAt(0);
Example 4: cut string from string javascript
var ret = "data-123".replace('data-','');
console.log(ret);