Content Freeze
As of July 25th, 2023, there is a content freeze on this page.
The Date.microsecondDiff() API returns the difference between two date, time, or timestamp fields in microseconds.
Parameters
- Date/time 1
- Date/time 2
Return Value
Number of microseconds between the two dates/times
Example
pjs.define("time", { type: 'time', initValue: '12:00:00'}) pjs.define("time1", { type: 'time', initValue: '12:00:10'}); pjs.define("diff", { type: 'integer'} ); diff = Date.microsecondDiff(time1,time); return diff; // 10000000
RPG Equivalent
%DIFF()