Node.js examples for Date:Hour
Get Hour Minute Second from Date as HH:MM:SS
Date.prototype.getHourMinuteSecond = function() { return this.getTwoDigitHour() + ':' + this.getTwoDigitMinute() + ':' + this.getTwoDigitSecond(); }