how to cut off the first character string javascript code example
Example 1: javascript remove first character from string
let str = " hello";
str = str.substring(1);
Example 2: javascript remove first character from string
var newStr = str.substring(1);