Skip to content

Instantly share code, notes, and snippets.

View RinyuDrvo's full-sized avatar

RinyuDrvo RinyuDrvo

View GitHub Profile
@RinyuDrvo
RinyuDrvo / script.js
Last active July 23, 2020 19:55
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')