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?