Answers for "remove first index of string 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
9

javascript remove first character from string

let str = " hello";
str = str.substring(1);
Posted by: Guest on October-03-2020
8

javascript remove first character from string

var newStr = str.substring(1);
Posted by: Guest on June-17-2019
1

javascript remove first character from string

let str = 'ass';

str = str.split(''); // (3) ["a", "s", "s"]
str.shift(); // (2) ["s", "s"]
str = str.join(''); // "ss"
Posted by: Guest on October-30-2020
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

js remove first element from string

let str = " hello"
str = str.substring(1)
Posted by: Guest on December-11-2020

Code answers related to "remove first index of string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language