Skip to content

Instantly share code, notes, and snippets.

@koush
Created November 21, 2019 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koush/f99b9c33aa2db151e1711fdff1b6d90e to your computer and use it in GitHub Desktop.
Save koush/f99b9c33aa2db151e1711fdff1b6d90e to your computer and use it in GitHub Desktop.
function foo1() {
throw new Error();
}
function foo2() {
try {
foo1();
}
finally {
}
}
function foo3() {
try {
foo2();
}
finally {
}
}
function foo4() {
try {
foo3();
}
finally {
}
}
foo4();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment