Number of days in month calculated this way:

var start = new Date(d.getFullYear(),d.getMonth(),1);
var end = new Date(d.getFullYear(),d.getMonth()+1,1);
var daysInCurMonth = parseInt((end-start)/(1000*60*60*24));

d is actual Date,for March it holds value(from FireBug console):
Date {Thu Mar 01 2012 00:00:00 GMT+0200}

parseInt((end-start)/(1000*60*60*24)) results 30,but

(end-start)/(1000*60*60*24) results 30.958333333333332

I expect rounding to 31,when using parseInt() function.

Math.round((end-start)/(1000*60*60*24)) results 31,that is correct for March 2012.

Is it OK to rely on Math.round(),when dealing with dates?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

How far have you tested this? Does not seem 100% secure to me.

Take a look at this method: http://snippets.dzone.com/posts/show/2099

How I did it a while back, and it works very well :)

link|improve this answer
i'm also hesitating in its secureness,that's why asked the question)thank you for hint,I will check it – sergionni Jan 5 at 10:57
You could make a function out of it an running it for a few months, just to double-check with a real calendar. It might work. – OptimusCrime Jan 5 at 11:00
I've just checked.Your solution works OK. – sergionni Jan 5 at 11:09
feedback

You can use parseFloat and Math.round If you need the next integer you can use Math.ceil

link|improve this answer
do you mean use them together like Math.round(parseFloat((end-start)/(1000*60*60*24))),because just parseFloat results float as well – sergionni Jan 5 at 11:04
Math.ceil looks OK – sergionni Jan 5 at 11:05
feedback

Is it OK to rely on Math.round(),when dealing with dates?

No, it is NOT! Dates are not numbers, today + 3600 * 24 is not always equal to tomorrow.

To find out days in the month use the following property of the Date object:

if you use 0 for dayValue, the date will be set to the last day of the previous month

so,

function daysInMonth(y, m)
{
    return new Date(y, m + 1, 0).getDate();
}


alert(daysInMonth(2011,1)) // 28
alert(daysInMonth(2012,1)) // 29
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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