Answers for "javascript get the last 4 characters of a 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

Code answers related to "javascript get the last 4 characters of a string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language