Created
April 13, 2018 13:23
-
-
Save joshuamabina/70a9cd8129883b4655f7a9b25085164e to your computer and use it in GitHub Desktop.
This file contains 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
/** | |
* The Call Stack | |
*/ | |
function foo () { | |
throw new Error('WTF is the call stack?'); | |
} | |
function bar() { | |
foo(); | |
} | |
function baz() { | |
bar(); | |
} | |
baz(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment