Answers for "how to cut off the first character of a string in javascript"

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

remove first character javascript

function newWord(str) {
	return str.substring(1);
}
Posted by: Guest on August-03-2021

Code answers related to "how to cut off the first character of a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language