Javascript Date getFullMonth()
getFullMonth()
Date.prototype.getFullMonth = function() { const month = this.getMonth()+1 return month < 10 ? '0'+month : month }