“Cadeia de categoria” Respostas de código

Cadeia de categoria

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

Cadeia de categoria


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

Xenophobic Xenomorph

Respostas semelhantes a “Cadeia de categoria”

Perguntas semelhantes a “Cadeia de categoria”

Procure respostas de código populares por idioma

Procurar outros idiomas de código