how to remove the first char in js code example
Example 1: remove first char javascript
let str = 'Hello';
str = str.substring(1);
console.log(str);
/*
Output: ello
*/
Example 2: how to remove first character from string in javascript
str = str.substring(1);