Answers for "remove zero of first charahcte of string type scritp"

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 "remove zero of first charahcte of string type scritp"

Code answers related to "Javascript"

Browse Popular Code Answers by Language