Skip to content

Instantly share code, notes, and snippets.

@bipinrajbhar
Created April 28, 2020 12:12
Show Gist options
  • Save bipinrajbhar/d6ea7ae24cc9e10ce498355db30d9603 to your computer and use it in GitHub Desktop.
Save bipinrajbhar/d6ea7ae24cc9e10ce498355db30d9603 to your computer and use it in GitHub Desktop.
function one() {
// throws an error
throw new Error("Oops");
}
function two() {
return one() + 1;
}
function three() {
return two() + 1;
}
console.log(three());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment