Answers for "javascript select last character in string"

4

javascript string get last two character

var member = "my name is Mate";

var last2 = member.slice(-2);

alert(last2); // "te"
Posted by: Guest on September-23-2020
4

js get last 4 digits

const id = "ctl03_Tabs1";
console.log(id.slice(id.length - 5)); //Outputs: Tabs1
console.log(id.slice(id.length - 1)); //Outputs: 1
Posted by: Guest on June-17-2020
7

javascript get last n characters of string

'abc'.slice(-1); // c
Posted by: Guest on February-03-2020
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 "javascript select last character in string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language