Node.js examples for Date:Time Format
Get Two Digit Date from Date
Date.prototype.getTwoDigitDate = function() { return (this.getDate() < 10) ? '0' + this.getDate() : this.getDate(); }