Answers for "javascript remove the first character of a sting"

2

remove first 3 characters from string javascript

var string = "abcd";
console.log(string.substring(3)); //"d"
Posted by: Guest on December-13-2019
9

javascript remove first character from string

let str = " hello";
str = str.substring(1);
Posted by: Guest on October-03-2020

Code answers related to "javascript remove the first character of a sting"

Code answers related to "Javascript"

Browse Popular Code Answers by Language