how to get last 2 digits of year in javascript 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);