function GetDaysInMonth(month, year)
{
return 32 - new Date(year, month, 32).getDate();
}
Ok, I don't see what this is doing specifically, this part:
new Date(year, month, 32).getDate();
I know what getDate() does, but then I looked up Date in JavaScript but in this particular example, I don't see why you'd pass 32 here. How can this be returning the number of days in whatever month and year you're passing to it?
