Node.js examples for Date:Date Format
Date to String Time
Date.prototype.toStringTime = function() { return this.getHours().toString().lpad('0', 2)+ ":"+this.getMinutes().toString().lpad('0', 2) }