Answers for "how to remove words from an array based on first letter js"

0

js remove first character from string

// Return a word without the first character
function newWord(str) {
	return str.replace(str[0],"");
	// or: return str.slice(1);
	// or: return str.substring(1);
}

console.log(newWord("apple"));	// "pple"   
console.log(newWord("cherry"));	// "herry"
Posted by: Guest on March-12-2021
0

javascript remove first character from array list

var x = ["X2019","X2020","X2021","X2022"];

var y = x.map(s => s.slice(1));

console.log(y);
Posted by: Guest on October-03-2021

Code answers related to "how to remove words from an array based on first letter js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language