get last two letters of string javascript code example
Example 1: javascript get last character in string
var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
Example 2: javascript get last n characters of string
'abc'.slice(-1); // c