Answers for "how to get the second last element of a string in javascript"

4

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

Code answers related to "how to get the second last element of a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language