Skip to content

Instantly share code, notes, and snippets.

@tmanOC
Created January 27, 2020 06:24
Show Gist options
  • Save tmanOC/7de2aba94a7523f508f6a595b4fddfec to your computer and use it in GitHub Desktop.
Save tmanOC/7de2aba94a7523f508f6a595b4fddfec to your computer and use it in GitHub Desktop.
async await version of a method that returns a promise
try {
var result = await methodThatReturnsAPromise()
handleResult(result)
} catch (err) {
handleAnyExceptions(err)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment