remove first character fomr string code example
Example 1: delete first character javascript
let str = 'Hello';
str = str.slice(1);
console.log(str);
/*
Output: ello
*/
Example 2: remove first character from string
String str = "Hello World";
String str2 = str.substring(1,str.length());