js how to get only the last 2 diggits code example
Example: 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);