Answers for "get last char str js"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language