Skip to content

Instantly share code, notes, and snippets.

@gisderdube
Created November 13, 2018 11:51
Show Gist options
  • Save gisderdube/4f682972f2645b398e6c2b7f4b08b6c0 to your computer and use it in GitHub Desktop.
Save gisderdube/4f682972f2645b398e6c2b7f4b08b6c0 to your computer and use it in GitHub Desktop.
const a = 5
try {
console.log(b) // b is not defined, so throws an error
} catch (err) {
console.error(err) // will log the error with the error stack
} finally {
console.log(a) // will always get executed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment