Skip to content

Instantly share code, notes, and snippets.

@ls404
Created March 9, 2018 14:28
Show Gist options
  • Save ls404/0d13c1eb32a1001d29078af5d13ceb37 to your computer and use it in GitHub Desktop.
Save ls404/0d13c1eb32a1001d29078af5d13ceb37 to your computer and use it in GitHub Desktop.
Leap year finder
function isLeap(x) {
let leap = (x % 4 == 0 && x % 100 != 0) || x % 400 == 0;
console.log(leap ? "yes" : "no");
}
isLeap(['2016']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment