Answers for "get last three letters of string javascript"

7

javascript get last n characters of string

'abc'.slice(-1); // c
Posted by: Guest on February-03-2020
2

get last letter of string javascript

// Get last n characters from string
var name = 'Shareek';
var new_str = name.substr(-5); // new_str = 'areek'
Posted by: Guest on March-17-2021

Code answers related to "get last three letters of string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language