Skip to content

Instantly share code, notes, and snippets.

@harryadel
Created August 26, 2016 19:24
Show Gist options
  • Save harryadel/146d3da02cdc9de4a69068843aa3e663 to your computer and use it in GitHub Desktop.
Save harryadel/146d3da02cdc9de4a69068843aa3e663 to your computer and use it in GitHub Desktop.
/*
My answer for exercise 'Recursion'
in Eloquent JavaScript Second Edition
Chapter 3 Functions
*/
function isEven(num) {
if (num % 2 == 0) {
return true;
}else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment