Javascript Date getDisplayMonth()
getDisplayMonth()
Date.prototype.getDisplayMonth = function() { return this.getMonth() > 9 ? "" : "0" + this.getMonth(); };