Skip to content

Instantly share code, notes, and snippets.

@RinyuDrvo
Last active July 23, 2020 19:55
Show Gist options
  • Select an option

  • Save RinyuDrvo/b66ab4a31186e737b9f0ceeecb44433f to your computer and use it in GitHub Desktop.

Select an option

Save RinyuDrvo/b66ab4a31186e737b9f0ceeecb44433f to your computer and use it in GitHub Desktop.
then chain doc
new Promise((resolve, reject) => {
console.log('Initial')
resolve()
})
.then(() => {
throw new Error('Something failed')
console.log('Do this')
})
.catch(() => {
console.log('Do that')
})
.then(() => {
console.log('Do this whatever happend before')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment