Skip to content

Instantly share code, notes, and snippets.

@technobulka
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technobulka/56c61872c9cf0b39af7c to your computer and use it in GitHub Desktop.
Save technobulka/56c61872c9cf0b39af7c to your computer and use it in GitHub Desktop.
Get days count by month and year.
function(m,y){return 31-((m==2)<<!(!(y%400^y%100)&!(y%4)))-(m-1)%7%2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment