Answers for "how to get last 2 digits of a number in javascript node"

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
0

extract the last number of two digits number js

var sampleNumber = 123456789,
  lastDigit = sampleNumber % 10;
console.log('The last digit of ', sampleNumber, ' is ', lastDigit);
Posted by: Guest on July-28-2021

Code answers related to "how to get last 2 digits of a number in javascript node"

Code answers related to "Javascript"

Browse Popular Code Answers by Language