Node.js examples for Date:Month
Get Two Digit Month from Date
Date.prototype.getTwoDigitMonth = function() { return (this.getMonth() < 9) ? '0' + (this.getMonth()+1) : (this.getMonth()+1); }