Versions Compared

Key

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


Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

The Date.dayDiff() API returns the difference between two dates in terms of days.

...

Code Block
languagejavascript
pjs.define("date", { type: 'date', initValue: '2017-01-01'})
pjs.define("date1", { type: 'date', initValue: '2017-01-30'});
pjs.define("diff", { type: 'integer'} );

diff = Date.dayDiff(date1,date);

return diff;
// 29

 

 

 

 

 

...