remove first occurrence of character in string javascript code example

Example 1: delete first character javascript

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
 
/*
    Output: ello
*/

Example 2: remove first 3 characters from string javascript

var string = "abcd";
console.log(string.substring(3)); //"d"

Example 3: javascript delete first character in string

var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"

Example 4: 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("");

Tags:

Java Example