Answers for "get string last 4 digits 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

Code answers related to "get string last 4 digits js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language