Skip to content

Instantly share code, notes, and snippets.

@gisderdube
Created November 13, 2018 12:47
Show Gist options
  • Save gisderdube/dbe49edb29146de019b584b2b75a9ecc to your computer and use it in GitHub Desktop.
Save gisderdube/dbe49edb29146de019b584b2b75a9ecc to your computer and use it in GitHub Desktop.
;(async function() {
try {
await someFuncThatThrowsAnError()
} catch (err) {
console.error(err) // we will make sense of that later
}
console.log('Easy!') // will get executed
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment