A rejected promise will skip all subsequent .then() methods until a _________ method is found.
- finally()
- catch()
- reject()
- resolve()
The correct method is catch(). When a Promise is rejected, it will skip all subsequent then() methods and look for a catch() method in the chain to handle the rejection. The catch() method is used to specify what to do in case of a rejected Promise.
Loading...
Related Quiz
- In ES6, how can you define a method inside an object literal?
- When destructuring function parameters, _________ can be used to handle undefined input.
- Static properties are useful for storing data that __________ across all instances of the class.
- What happens when you try to import a non-existent named export from a module?
- How do you remove an item from a Map in ES6?