Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I get the difference between 2 dates in full days (I don't want any fractions of a day)

var date1 = new Date('7/11/2010');
var date2 = new Date('12/12/2010');
var diffDays = date2.getDate() - date1.getDate(); 
alert(diffDays)

I tried the above but this did not work.

share|improve this question
2  
Just a side note: do not create Date objects with these kind of strings as input; it's non-standard and up to the browser how those are parsed. Use strings that can be parsed by Date.parse or, rather, use three numeric values as the arguments to new Date, e.g. new Date(2010, 11, 7);. – Marcel Korpel Jul 11 '10 at 22:53

4 Answers

up vote 17 down vote accepted

Here is one way:

var date1 = new Date("7/11/2010");
var date2 = new Date("12/12/2010");
var timeDiff = Math.abs(date2.getTime() - date1.getTime());
var diffDays = Math.ceil(timeDiff / (1000 * 3600 * 24)); 
alert(diffDays)​;

Observe that we need to enclose the date in quotes. The rest of the code gets the time difference in milliseconds and then divides to get the number of days.

share|improve this answer
Ah the quotes was a typo. Still I get like 1 day with my way. – chobo2 Jul 11 '10 at 22:27
Whats (1000 * 3600 * 24) what is each of those (mins?seconds? hours?) – chobo2 Jul 11 '10 at 22:28
Another problem that what yours has and @volkan er does not seem to have is if date2 is less than date 1 yours will give a positive number instead of negative. – chobo2 Jul 11 '10 at 22:33
1  
Likewise, you get 1 day with your method, because getDate() returns the day without regards to the month. Thus, you would get 12 - 11 = 1. – TNi Jul 11 '10 at 22:40
1  
date already returned time do not need to call .getTime() – volkan er Jul 11 '10 at 22:56
show 2 more comments

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?

share|improve this answer
this is the ONLY correct answer, i don't understand why other answer if accepted – Ai_boy Apr 5 at 8:26
1  
probably because @chobo2 has not come back and looked at this question – Shyam Habarakada Apr 6 at 20:47

You can't get the difference between two objects. To do what you want, you need to get a timestamp via Date().getTime();

getDate() simply returns a formatted string, and it doesn't make sense to decrease a string by a string.

So, your code would look like:

var date1 = new Date('7/11/2010');
var date2 = new Date('12/12/2010');
var diffDays = date2.getTime() - date1.getTime(); 
alert(diffDays);

Edit: TNi's code should work like a charm. I'm getting fed up at this keyboard typing race...

share|improve this answer
Yes, the keyboard race can get annoying very quickly. I've lost a number of those. – TNi Jul 11 '10 at 22:40
1  
Not true. In javascript, using the subtract operator on a Date will convert the Date to a numeric value (the equivalent of getTime()) before performing the operation. var d2, d1=new Date(); setTimeout(function(){d2=new Date(); alert(d2-d1);}, 100); alerts 100. – Dagg Nabbit Jul 11 '10 at 23:49
However, doing against a getDate() (as he did) is still wrong, and I would discourage the use of some object-specific "magic". – Christian Jul 12 '10 at 6:33
var date1 = new Date("7/11/2010");
var date2 = new Date("8/11/2010");
var diffDays = parseInt((date2 - date1) / (1000 * 60 * 60 * 24)); 

alert(diffDays )
share|improve this answer
What is 1000 * 60 * 60 * 24? – chobo2 Jul 11 '10 at 22:32
date2 - date1 => milliseconds output (1000 * 60 * 60 * 24) => milisecond to day – volkan er Jul 11 '10 at 22:36
Isn't parseInt completely unnecessary? – Christian Jul 11 '10 at 23:02
to get full value in terms of number of days; request and will be subject to work-related... – volkan er Jul 11 '10 at 23:06
Christian: he wanted an integral number. parseInt is probably the worst way to do it. Math.round is the 'normal' way; it rounds instead of truncating. If truncating was desired, 'or'ing the expression with 0 would suffice: (date2 - date1) / (1000 * 60 * 60 * 24) | 0 – Dagg Nabbit Jul 12 '10 at 0:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.