Answers for "get last few characters of string 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
3

how to get last string in javascript

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

Code answers related to "get last few characters of string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language