Versions Compared

Key

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


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

Section


Column
width50%

Parameters


  • Numeric Value


Column
width25%

Return Value


Date or time with specified number of hours added.


Column
width25%

RPG Equivalent


%HOURS()


Examples

...

Code Block
languagejavascript
pjs.define("time", { type: 'time', initValue: '12:00:00'});

time = time.addHours(1);

return time;
//13:00:00

...