Answers for "get two digit year with javascript"

1

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

get month in two digit in javascript date

("0" + (this.getMonth() + 1)).slice(-2)
Posted by: Guest on May-18-2020

Code answers related to "get two digit year with javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language