Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Last active January 14, 2016 17:06
Show Gist options
  • Save qetr1ck-op/52d592d41cef1e5c3428 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/52d592d41cef1e5c3428 to your computer and use it in GitHub Desktop.
function baz() {
throw new Error('Oops!');
}
function bar() {
return baz();
}
function foo() {
bar();
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment