Answers for "js cut the first in a string"

3

javascript remove first character from string

var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"
Posted by: Guest on August-05-2019

Code answers related to "js cut the first in a string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language