When a Promise is rejected, which method is typically used to handle the rejection?
- catch
- finally
- reject
- onReject
In the context of Promises, the catch method is commonly used to handle the rejection of a Promise. It allows you to specify a callback function that will be called if the Promise is rejected, providing a way to handle errors in asynchronous operations.
Loading...
Related Quiz
- Is it possible to dynamically import modules using ES6 syntax, and how does it differ for named and default exports?
- Using await inside a __________ loop can cause asynchronous operations to run sequentially.
- In Node.js, ES6 Modules have a different file extension (_________) compared to CommonJS modules (.js).
- In a class hierarchy, if a method is overridden, how can you call the method from the parent class?
- How does tree shaking contribute to the final bundle size in a JavaScript project?