Javascript Date addSeconds(count)

Description

Javascript Date addSeconds(count)

Date.prototype.addSeconds = function(count)
{
 this.setSeconds(this.getSeconds() + count);
};



PreviousNext

Related