addMinutes
  • 09 Apr 2021
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

addMinutes

  • Dark
    Light
  • PDF

Article summary

Description

Returns a DateTime object with a specified number of minutes added to today's date. Both positive and negative values are supported to either add or subtract the specified amount of time.


Input Parameters

NameTypeRequiredDescription
valueNumberYesNumber of minutes to add or subtract

Returns

Type: DateTime

Returns a new DateTime value with the adjusted time component.


Examples

// returns a new DateTime with 45 minutes added to the current time
var date = tools.addMinutes(45);
// returns a new DateTime with 45 minutes subtracted from the current time
var date = tools.addMinutes(-45);

Remarks

Use this helper function when you want to create offset DateTime values computed from today's date and time.


What's Next