Answers for "remove leading plus from number in javascript"

0

remove leading characters in javascript

1. Using substring()
The substring() method returns the part of the string between the specified indexes, or to the end of the string.

let str = 'Hello';
 
str = str.substring(1);
console.log(str);
 
/*
    Output: ello
*/
 
The solution can be easily extended to remove first n characters from the string.


let str = 'Hello';
let n = 3;
 
str = str.substring(n);
console.log(str);
 
/*
    Output: lo
*/
 
___________________________________________________________________________
2. Using slice()
The slice() method extracts the text from a string and returns a new string.

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
 
/*
    Output: ello
*/
 
This can be easily extended to remove first n characters from the string.


let str = 'Hello';
let n = 3;
 
str = str.slice(n);
console.log(str);
 
/*
    Output: lo
*/
 
__________________________________________________________________________
3. Using substr()
The substr() method returns a portion of the string, starting at the specified index and extending for a given number of characters or till the end of the string.


let str = 'Hello';
 
str = str.substr(1);
console.log(str);
 
/*
    Output: ello
*/
 
Note that substr() might get deprecated in future and should be avoided.
Posted by: Guest on April-03-2021

Code answers related to "remove leading plus from number in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language