Node.js examples for Date:Date Calculation
Add date to a Date
Date.prototype.addDate = function(count) { this.setDate(this.getDate() + count);/*www . ja va2 s . c o m*/ };