javascript delete character from string code example
Example 1: remove first char javascript
let str = 'Hello';
str = str.substring(1);
console.log(str);
/*
Output: ello
*/
Example 2: javascript remove character from string
mystring.replace(/r/g, '')