javascript get last word in string 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: how to get last string in javascript
'abc'.slice(-2);
Example 4: get last letter of string javascript
var name = 'Shareek';
var new_str = name.substr(-5);
Example 5: javascript get last word in string
function lastWord(words) {
let n = words.replace(/[\[\]?.,\/#!$%\^&\*;:{}=\\|_~()]/g, "").split(" ");
return n[n.length - 1];
}
Example 6: inbuilt javascript functions for last word check
function test(words) {
var n = words.indexOf(" ");
var res = words.substring(n+1,-1);
return res;
}