Which method is used to handle errors in a JavaScript Promise?
- catch()
- reject()
- error()
- handleError()
The catch() method is used to handle errors in a JavaScript Promise. It allows you to specify a callback function that will be executed if the promise is rejected. Option A is correct because it represents the correct method for handling errors in promises.
Loading...
Related Quiz
- In a for...of loop, the _________ method of an iterable object is called to retrieve values.
- Default parameters can be combined with object destructuring to construct complex default values.
- What is the implication of using arrow functions in constructors?
- How do you create a new object that inherits from an existing object in ES6?
- In what ways can destructuring assignment be utilized in function parameters?