nodejs remove first character code example
Example 1: javascript remove first character from string
let str = " hello";
str = str.substring(1);
Example 2: how to remove first letter of a string
s = "hello"
print s[1:]
let str = " hello";
str = str.substring(1);
s = "hello"
print s[1:]