Skip to content

Instantly share code, notes, and snippets.

@bitsmanent
Last active June 9, 2021 12:46
Show Gist options
  • Save bitsmanent/1506947d044b737713e885ea2de8edca to your computer and use it in GitHub Desktop.
Save bitsmanent/1506947d044b737713e885ea2de8edca to your computer and use it in GitHub Desktop.
Check if the given number is a leap year
function isleap(year) {
return !(year % 4) && ((year % 100) || !(year % 400));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment