Answers for "js get last 2 digits of year"

0

get only last 2 digit of year in javascript

var strDate = new Date(); // By default Date empty constructor give you Date.now
var shortYear = strDate.getFullYear(); 
// Add this line
var twoDigitYear = shortYear.toString().substr(-2);
Posted by: Guest on March-19-2020
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 "js get last 2 digits of year"

Code answers related to "Javascript"

Browse Popular Code Answers by Language