get the last letter of a word in a string jquery code example
Example 1: javascript get last character in string
var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
Example 2: jquery last character in string
myString.slice(-1);
Example 3: how to get last string in javascript
'abc'.slice(-2);