“rantai .catch” Kode Jawaban

rantai .catch

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

rantai .catch


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

Xenophobic Xenomorph

Jawaban yang mirip dengan “rantai .catch”

Pertanyaan yang mirip dengan “rantai .catch”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya