delete the part of the string in javascript code example
Example 1: javascript remove first character from string
var newStr = str.substring(1);
Example 2: javascript delete first character in string
var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"