JavaScript Promise error handling with catch and finally
Let's see how to handle errors in JavaScript Promises. You might think you can put a try/catch around a Promise:
try {
const p = new Promise((resolve, reject) => {
console.log("I think I'm about to throw up!");
throw new Error('boom');
})...
arturcarvalho.hashnode.dev4 min read