Answers for "remove first 5 characters from string js"

13

delete first character javascript

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
 
/*
    Output: ello
*/
Posted by: Guest on July-06-2020
2

remove first 3 characters from string javascript

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

Code answers related to "remove first 5 characters from string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language