how to trim the first ten letters of a string javascript code example
Example 1: remove first 3 characters from string javascript
var string = "abcd";
console.log(string.substring(3)); //"d"
Example 2: javascript remove first character from string
let str = 'ss';
str = new RegExp('^.(.*)').exec(str)[1]; // "s"