get last character from string javascript code example
Example 1: javascript get last character in string
var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);
Example 2: javascript remove last character from string
var str = "Hello";
var newString = str.substring(0, str.length - 1);
Example 3: js get last 4 digits
const id = "ctl03_Tabs1";
console.log(id.slice(id.length - 5));
console.log(id.slice(id.length - 1));
Example 4: how to get last string in javascript
'abc'.slice(-2);
Example 5: javascript last character of string
var lastChar = myString[myString.length -1];
Example 6: javascript get last word in string
function lastWord(words) {
let n = words.replace(/[\[\]?.,\/#!$%\^&\*;:{}=\\|_~()]/g, "").split(" ");
return n[n.length - 1];
}