“. Catch łańcuch” Kod odpowiedzi

. Catch łańcuch

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 łańcuch


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

Xenophobic Xenomorph

Odpowiedzi podobne do “. Catch łańcuch”

Pytania podobne do “. Catch łańcuch”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu