js get characters from string code example
Example 1: how to get the first character of a string in javascript
let str = 'John Wick'
let firstChar = str.charAt(0)
console.log(firstChar);
Example 2: js .substring
let anyString = 'Mozilla'
console.log(anyString.substring(0, 1))
console.log(anyString.substring(1, 0))
console.log(anyString.substring(0, 6))
console.log(anyString.substring(4))
console.log(anyString.substring(4, 7))
console.log(anyString.substring(7, 4))
console.log(anyString.substring(0, 7))
console.log(anyString.substring(0, 10))
Example 3: cut string from string javascript
var ret = "data-123".replace('data-','');
console.log(ret);