Node.js examples for Date:Month
Add Month to a Date
Date.prototype.addMonth = function(count) { this.setMonth(this.getMonth() + count); };