Skip to content

Instantly share code, notes, and snippets.

@ehzawad
Created March 29, 2016 23:59
Show Gist options
  • Select an option

  • Save ehzawad/b5a675369ede1cdc0f91c8be071235d0 to your computer and use it in GitHub Desktop.

Select an option

Save ehzawad/b5a675369ede1cdc0f91c8be071235d0 to your computer and use it in GitHub Desktop.
debugger;
console.log(a(1));
function a(foo) {
if (foo > 20) {
return foo;
}
return b(foo + 2);
}
function b(foo) {
return c(foo) + 1;
}
function c(foo) {
return a(foo * 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment