Node.js examples for Date:Month
Pad Month value with 0
Date.prototype.getDisplayMonth = function() { return this.getMonth() > 9 ? "" : "0" + this.getMonth(); };