Skip to content

Instantly share code, notes, and snippets.

@jdetle
Last active October 20, 2015 23:55
Show Gist options
  • Save jdetle/823928e172265dbea5b3 to your computer and use it in GitHub Desktop.
Save jdetle/823928e172265dbea5b3 to your computer and use it in GitHub Desktop.
function foo(arg){
if(arg == baseCase){
//console.log arg and we will get what we want
return result;
//will returned undefined
}
else{
//decrement arg
foo();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment