Add minutes to a Date - Node.js Date

Node.js examples for Date:Minute

Description

Add minutes to a Date

Demo Code

Date.prototype.addMinutes = function(count)
{
  this.setMinutes(this.getMinutes() + count);
};

Related Tutorials