Skip to content

Instantly share code, notes, and snippets.

@VoloshchenkoAl
Created March 7, 2017 10:33
Show Gist options
  • Save VoloshchenkoAl/b94b7777d45fb6b4cfa1582a466840a1 to your computer and use it in GitHub Desktop.
Save VoloshchenkoAl/b94b7777d45fb6b4cfa1582a466840a1 to your computer and use it in GitHub Desktop.
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