Answers for "cut the first character of a string ajavscript"

9

javascript remove first character from string

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

javascript remove first character from string

let str = 'ss';

str = new RegExp('^.(.*)').exec(str)[1]; // "s"
Posted by: Guest on October-30-2020

Code answers related to "cut the first character of a string ajavscript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language