Skip to content

Instantly share code, notes, and snippets.

@jmurowaniecki
Created January 19, 2015 21:43
Show Gist options
  • Save jmurowaniecki/f0d17cf73708637ff05c to your computer and use it in GitHub Desktop.
Save jmurowaniecki/f0d17cf73708637ff05c to your computer and use it in GitHub Desktop.
Verifica se o ano informado é bissexto
function isBissextile(n) { return n % 4 === 0 && (n % 400 === 0 || n % 100 !== 0) ? true : false; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment