Created
March 29, 2016 23:59
-
-
Save ehzawad/b5a675369ede1cdc0f91c8be071235d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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