Skip to content

Instantly share code, notes, and snippets.

@kaizimmer
Created July 21, 2012 13:14
Show Gist options
  • Save kaizimmer/3155797 to your computer and use it in GitHub Desktop.
Save kaizimmer/3155797 to your computer and use it in GitHub Desktop.
Ecmascript | Calculate number of days in a month
function getNumberOfDays ( year, month )
{
return 32 - new Date(year, month, 32).getDate();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment