Node.js examples for Date:Date Calculation
Date mid night
Date.prototype.midnight = function() { this.setHours(0); // w ww .ja v a 2s . co m this.setMinutes(0); this.setSeconds(0); this.setMilliseconds(0); return this; }