Skip to content

Instantly share code, notes, and snippets.

@deepal
Created April 27, 2019 13:45
Show Gist options
  • Select an option

  • Save deepal/e5056d3de1cf411868558dad9dbb77af to your computer and use it in GitHub Desktop.

Select an option

Save deepal/e5056d3de1cf411868558dad9dbb77af to your computer and use it in GitHub Desktop.
function myAsyncFunction() {
return new Promise((resolve, reject) => {
setTimeout(() => {
reject(new Error('oops'))
}, 1000);
})
}
myAsyncFunction()
.then(() => {
// happy path
})
.catch((err) => {
// handle error
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment