mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
368 B
368 B
date | id | title |
---|---|---|
2020-11-11 | af9d9cf2-a888-4e8e-8156-4c4a664450f1 | Catching Promise Errors |
Syntax
new Promise((_, reject) => reject(new Error("Fail")))
.then(value => console.log("Handler 1"))
.catch(reason => {
console.log("Caught failure " + reason);
return "nothing";
})
.then(value => console.log("Handler 2", value));