Skip to content

Instantly share code, notes, and snippets.

@xhoskin
Created October 22, 2015 14:59
Show Gist options
  • Save xhoskin/bb7842b5b03b32667e7e to your computer and use it in GitHub Desktop.
Save xhoskin/bb7842b5b03b32667e7e to your computer and use it in GitHub Desktop.
Get number days in a specified month using javascript - Количество дней в месяце
function daysInMonth(month,year) {
return new Date(year, month, 0).getDate();
}
//July
daysInMonth(7,2009); //31
//February
daysInMonth(2,2009); //28
daysInMonth(2,2008); //29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment