Skip to content

Instantly share code, notes, and snippets.

@artisonian
Created January 10, 2013 19:39
Show Gist options
  • Save artisonian/4505118 to your computer and use it in GitHub Desktop.
Save artisonian/4505118 to your computer and use it in GitHub Desktop.
function isLeapYear (n) { return (n % 400 === 0) || ((n % 4 === 0) && (n % 100 !== 0)); }
isLeapYear(1999); // => false
isLeapYear(2000); // => true
isLeapYear(2011); // => false
isLeapYear(2012); // => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment