date.addMinutes()

date.addMinutes()

The time.addMinutes() API adds the number of minutes that are passed to the date or time.

Parameters


  • Numeric Value

Return Value


Date or time with specified number of minutes added.

RPG Equivalent


%MINUTES()

Examples


pjs.define("time", { type: 'time',initValue: '12:00:00.0000'}); time = time.addMinutes(10); return time; //12:10:00