Most of these solutions ignore a case that fails when the two dates involved go across a day light saving change. In this case, the date on which day light saving change happens will have a duration in milliseconds which != 1000*60*60*24, so the typical calculation will fail.
A more accurate way to get the number of days between two javascript dates can be written as follows:
var _MS_PER_DAY = 1000 * 60 * 60 * 24;
// a and b are javascript Date objects
function dateDiffInDays(a, b) {
// Discard the time and time-zone information.
var utc1 = Date.UTC(a.getFullYear(), a.getMonth(), a.getDate());
var utc2 = Date.UTC(b.getFullYear(), b.getMonth(), b.getDate());
return Math.floor((utc2 - utc1) / _MS_PER_DAY);
}
This works because UTC time never observes DST. See Does UTC observe daylight saving time?
new Date, e.g.new Date(2010, 11, 7);. – Marcel Korpel Jul 11 '10 at 22:53