The Date.yearDiff() method API returns the difference of the years between two different datesdate, time, or timestamp fields in years.
Parameters
- Date/time 1
- Date/time 2
Return Value
Integer that is the difference Number of the years between the two dates/times
Example
...
Code Block | ||
---|---|---|
| ||
pjs.define("date", { type: 'date', initValue: '2017-01-01'}); pjs.define("date1", { type: 'date', initValue: '2021-01-01'}); pjs.define("diff", { type: 'integer'} ); diff = Date.yearDiff(date1, date); return diff; // 4 |
RPG Equivalent
%DIFF()