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