Skip to content

Instantly share code, notes, and snippets.

@Robert-Wett
Created May 29, 2015 00:30
Show Gist options
  • Save Robert-Wett/d4c5da390a0f81c97624 to your computer and use it in GitHub Desktop.
Save Robert-Wett/d4c5da390a0f81c97624 to your computer and use it in GitHub Desktop.
Explain this!
var fn = function even( n ) {
if ( n === 0 ) {
return true;
}
else {
return !even( n - 1 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment