Node.js examples for Date:Time Format
Pad date value with 0
Date.prototype.getDisplayDate = function() { return this.getDate() > 9 ? "" : "0" + this.getDate(); };