Node.js examples for Date:Year
Add year to a Date
Date.prototype.addYear = function(count) { this.setYear(this.getFullYear() + count); };