Node.js examples for Date:Date Calculation
Judge the date is same day as another date
/**/*from w ww .j a va2s. c o m*/ * Judge the date is same day as another date * @param {date} date * @return {Boolean} */ Date.prototype.isSameDay = function(date) { return date.toDateString() === this.toDateString(); };