Answers for "how to check the last letter in the word is in the given array or not in js"

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
0

javascript get last word in string

// strips all punctuation and returns the last word of a string
// hyphens (-) aren't stripped, add the hyphen to the regex to strip it as well
function lastWord(words) {
    let n = words.replace(/[\[\]?.,\/#!$%\^&\*;:{}=\\|_~()]/g, "").split(" ");
    return n[n.length - 1];
}
Posted by: Guest on June-24-2020

Code answers related to "how to check the last letter in the word is in the given array or not in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language