An unhandled promise rejection can be caught globally using process.on('________', handler).
- rejection
- unhandledRejection
- promiseError
- errorHandled
In Node.js, the 'unhandledRejection' event is emitted when a Promise is rejected but no handler is provided. Using process.on('unhandledRejection', handler) allows you to catch and handle such rejections globally.
Loading...
Related Quiz
- Destructuring an object within a _________ allows for directly mapping object properties to function parameters.
- What is the primary purpose of a constructor in a JavaScript class?
- How do getter and setter methods in ES6 classes enhance object property access?
- How can destructuring assignment be effectively used in React components to handle props and state?
- When higher-order functions are used for asynchronous programming, they often involve __________ to handle future results.