Node.js examples for Date:Day
Get tomorrow and yesterday
Date.prototype.tomorrow = function() { return new Date( this.getFullYear(),//from w ww . j av a2 s .c o m this.getMonth(), this.getDate() + 1, this.getHours(), this.getMinutes(), this.getSeconds(), this.getMilliseconds() ); }; Date.prototype.yesterday = function() { return new Date( this.getFullYear(), this.getMonth(), this.getDate() - 1, this.getHours(), this.getMinutes(), this.getSeconds(), this.getMilliseconds() ); };