The Date.secondDiff() method returns the difference of seconds between two different dates that are passedin seconds.
Parameters
- Date
- Date
Return Value
Integer that is the difference Number of the seconds between the two dates
Example
Code Block | ||
---|---|---|
| ||
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.secondDiff(time1,time) return diff; //10 |