Skip to content

Instantly share code, notes, and snippets.

@jmurowaniecki
Created January 19, 2015 21:43
Show Gist options
  • Save jmurowaniecki/e8cc3d39973fa46d92c9 to your computer and use it in GitHub Desktop.
Save jmurowaniecki/e8cc3d39973fa46d92c9 to your computer and use it in GitHub Desktop.
Retorna quantidade de dias em dado mês
function daysInMonth(month, year) { return new Date(year, month, 0).getDate(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment