Answers for "js remove first and charater word from string"

13

delete first character javascript

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
 
/*
    Output: ello
*/
Posted by: Guest on July-06-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 "js remove first and charater word from string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language