remove first 30 char in string code example
Example 1: js remove first element from string
let str = " hello"
str = str.substring(1)
Example 2: javascript remove first character from string
let str = 'ss';
str = new RegExp('^.(.*)').exec(str)[1]; // "s"