Skip to content

Instantly share code, notes, and snippets.

@gisderdube
Created November 13, 2018 11:44
Show Gist options
  • Save gisderdube/c0f2bf251d04744189ae53e73c5a7f57 to your computer and use it in GitHub Desktop.
Save gisderdube/c0f2bf251d04744189ae53e73c5a7f57 to your computer and use it in GitHub Desktop.
Basic try ... catch
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
}
console.log(a) // still gets executed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment