Skip to content

Instantly share code, notes, and snippets.

@Davidnet
Created February 28, 2016 01:57
Show Gist options
  • Save Davidnet/fa967f07b2a2ceedf98b to your computer and use it in GitHub Desktop.
Save Davidnet/fa967f07b2a2ceedf98b to your computer and use it in GitHub Desktop.
function isEven(z) {
if (z == 1) {
return (true);
}
if (z == 0){
return (false);
}
else {
isEven(z-2);
}
}
console.log(isEven(50));
console.log(isEven(75));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment