Skip to content

Instantly share code, notes, and snippets.

@joshuamabina
Created April 13, 2018 13:23
Show Gist options
  • Save joshuamabina/70a9cd8129883b4655f7a9b25085164e to your computer and use it in GitHub Desktop.
Save joshuamabina/70a9cd8129883b4655f7a9b25085164e to your computer and use it in GitHub Desktop.
/**
* 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