Javascript Date addDate(count)
Date.prototype.addDate = function(count) { this.setDate(this.getDate() + count);/*from w w w . j a v a 2 s.c om*/ };