Answers for "last four digits of string js"

5

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
0

last five characters of string javascript

var hello = "Hello World";

var last5 = hello.slice(-5);

alert(last5); // "World"
Posted by: Guest on June-28-2021

Code answers related to "last four digits of string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language