Node.js examples for Date:Day
Get the beginning of a day
Date.prototype.beginningOfDay = function () { this.setHours(0)//from w ww. j a va 2 s . co m this.setSeconds(0) this.setMilliseconds(0) return this }