Skip to content

Instantly share code, notes, and snippets.

@TimBlock
Created January 14, 2016 08:05
Show Gist options
  • Select an option

  • Save TimBlock/1e1ffa1d146c9bcd8625 to your computer and use it in GitHub Desktop.

Select an option

Save TimBlock/1e1ffa1d146c9bcd8625 to your computer and use it in GitHub Desktop.
// Your code here.
function ifEven(number){
if (number==0) console.log(true);
else console.log(false);
isEven(number-2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment