Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Created January 5, 2021 11:35
Show Gist options
  • Save zlatkov/02d5b86f943ac984e58aed6e8d7c2fe4 to your computer and use it in GitHub Desktop.
Save zlatkov/02d5b86f943ac984e58aed6e8d7c2fe4 to your computer and use it in GitHub Desktop.
async function run() {
try {
await foo();
} catch(err) {
// This block will be reached now.
} finally {
// This block will be reached at the end.
}
}
run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment