Answers for "how to get the first and last word of a string in javascript"

1

get last word in string js

function test(words) {
    var n = words.split(" ");
    return n[n.length - 1];
}
Posted by: Guest on May-04-2021
2

get last letter of string javascript

// Get last n characters from string
var name = 'Shareek';
var new_str = name.substr(-5); // new_str = 'areek'
Posted by: Guest on March-17-2021

Code answers related to "how to get the first and last word of a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language