Answers for "how to pop first value in strting js"

8

javascript remove first character from string

var newStr = str.substring(1);
Posted by: Guest on June-17-2019
4

remove first char javascript

let str = 'Hello';
 
str = str.substring(1);
console.log(str);
 
/*
    Output: ello
*/
Posted by: Guest on May-28-2020

Code answers related to "how to pop first value in strting js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language