Answers for "js get last two 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
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 two digits of year"

Code answers related to "Javascript"

Browse Popular Code Answers by Language