javascript remove the first character of a string code example
Example 1: javascript remove first character from string
let str = " hello";
str = str.substring(1);
Example 2: delate char betwen index js
// First find the substring of the string to replace, then replace the first occurrence of that string with the empty string.
S = S.replace(S.substring(bindex, eindex), "");
//Another way is to convert the string to an array, splice out the unwanted part and convert to string again.
var result = S.split("");
result.splice(bindex, eindex - bindex);
S = result.join("");
Example 3: javascript remove first character from string
let str = 's';
str = (function f(s) { // don't use on large strings
return s.length<=1?'':f(s.slice(0, -1))+s[s.length-1]
})(str); // ""