Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The Date.hourDiff() method returns the difference of hours between two different dates that are passed

Parameters
  1. Date
  2. Date

Return Value

Integer that is the difference of the hours between the two dates

Example

 

pjs.define("time", { type: 'time', initValue: '12:00:00'})
pjs.define("time1", { type: 'time', initValue: '22:00:00'});
pjs.define("diff", { type: 'integer'} );

diff = Date.hourDiff(time1,time)


return diff;
//10
  • No labels