get last word in string js
function test(words) {
var n = words.split(" ");
return n[n.length - 1];
}
get last word in string js
function test(words) {
var n = words.split(" ");
return n[n.length - 1];
}
how to find the last word of a string in javascript
// To get the last "Word" of a string use the following code :
let string = 'I am a string'
let splitString = string.split(' ')
let lastWord = splitString[splitString.length - 1]
console.log(lastWord)
/*
Explanation : Here we just split the string whenever there is a space and we get an array. After that we simply use .length -1 to get the last word contained in that array that is also the last word of the string.
*/
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us