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