Skip to content

Instantly share code, notes, and snippets.

@tuvo1106
Created November 20, 2018 20:16
Show Gist options
  • Save tuvo1106/dd89a44ba800eafa18b1b37f314570c0 to your computer and use it in GitHub Desktop.
Save tuvo1106/dd89a44ba800eafa18b1b37f314570c0 to your computer and use it in GitHub Desktop.
const isEven = x=> {
switch (x) {
// base cases
case 0: return true;
case 1: return false
// subtracts 2 off of x until it hits 0 or 1
default: return isEven(x - 2)
}
}
isEven(100) // true
isEven(99) // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment