js get last word of string code example
Example 1: javascript remove last character from string
var str = "Hello";
var newString = str.substring(0, str.length - 1);
Example 2: javascript get last n characters of string
'abc'.slice(-1);
Example 3: javascript get last word in string
function lastWord(words) {
let n = words.replace(/[\[\]?.,\/#!$%\^&\*;:{}=\\|_~()]/g, "").split(" ");
return n[n.length - 1];
}
Example 4: inbuilt javascript functions for last word check
function test(words) {
var n = words.indexOf(" ");
var res = words.substring(n+1,-1);
return res;
}