Versions Compared

Key

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

The Date.dayDiff() method returns the difference of days between two different dates that are passedin days.

Parameters
  1. Date
  2. Date

Return Value

Integer that is the difference Number of days between the two dates

Example

 

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