how to get the last 3 letters in javascript code example
Example 1: javascript get last n characters of string
'abc'.slice(-1); // c
Example 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'