I have a jQuery clock that gives the time from 00:00 to 23:00.
Now I want to calculate the time difference between two times. Suppose the \"in\" time is 11:00, and t
you should try momentjs, i think its much better than datejs.
According to momentjs example:
var a = moment([2007, 0, 29]); var b = moment([2007, 0, 28]); a.diff(b, 'days') // 1