slice first char of string js code example
Example: javascript delete first character in string
var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"
var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"