Javascript Date addDay()
addDay()
Date.prototype.addDay = function(){ this.setDate(this.getDate() + 1);// w w w .j av a 2s .c o m };