get two digit date in javascript code example
Example 1: ecmascript 7 getmonth as 2 digits
("0" + this.getDate()).slice(-2)
Example 2: get month in two digit in javascript date
("0" + (this.getMonth() + 1)).slice(-2)
("0" + this.getDate()).slice(-2)
("0" + (this.getMonth() + 1)).slice(-2)