Javascript Date addSeconds(s)
Date.prototype.addSeconds = function(s) { this.setSeconds(this.getSeconds() + s); return this;//w w w .j av a2s. c o m }
Date.prototype.addSeconds= function(s){ this.setSeconds(this.getSeconds()+s); return this;/*w w w . ja va2 s.c o m*/ }