Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Adds specified number of days to specified date time value and returns asynchronously.

Promise<DateTimeOffset> myCalendar.AddDaysAsync(dateTime: DateTimeOffset, days: number)

Arguments

Specifies the base date time value.
number days
Specifies the how many days will be added to dateTime parameter.

Example

Code Block
languagejs
//adds 2 days to the current date and returns DateTimeOffset object.
$Calendar.AddDaysAsync($Calendar.Today, 2).then(function(newDate) {
console.log(newDate);
});