“.catch Chain” Ответ

.catch Chain

new Promise((resolve, reject) => {
    console.log('Initial');

    resolve();
})
.then(() => {
    throw new Error('Something failed');

    console.log('Do this');
})
.catch(() => {
    console.error('Do that');
})
.then(() => {
    console.log('Do this, no matter what happened before');
});
Frail Falcon

.catch Chain


try{
    throw new Error();
} catch(e){
    // handle
} 
// this code will run, since you recovered from the error!

Xenophobic Xenomorph

Ответы похожие на “.catch Chain”

Вопросы похожие на “.catch Chain”

Смотреть популярные ответы по языку

Смотреть другие языки программирования