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