remove the first character of a string in javascript code example
Example 1: javascript remove first character from string
let str = " hello";
str = str.substring(1);
Example 2: how to remove first character from string in javascript
str = str.substring(1);