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

5

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
30

javascript get last character in string

var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
Posted by: Guest on August-01-2019
3

how to get last string in javascript

'abc'.slice(-2);
Posted by: Guest on June-14-2020
4

get last char javascript

var lastChar = myString[myString.length -1];
Posted by: Guest on May-28-2020
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 "get the last letter of a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language