Javascript Date addYear()
addYear()
Date.prototype.addYear = function(){ this.setFullYear(this.getFullYear() + 1); };