Answers for "get the last characters of a string javascript"

12

get last three characters of string javascript

var member = "my name is Afia";

var last3 = member.slice(-3);

alert(last3); // "fia"
Posted by: Guest on June-28-2021
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 "get the last characters of a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language