ES6 introduces the __________ property in object literals for setting the prototype of the created object.
- Prototype
- proto
- Object.setPrototypeOf()
- Object.create()
In ES6, the proto property in object literals is used for setting the prototype of the created object. It provides a convenient way to establish the prototype chain for an object.
Loading...
Related Quiz
- How does error handling differ between traditional callbacks and Promises?
- In ES6, can the rest operator be used in conjunction with destructuring to extract specific elements from an array?
- Describe the implementation of an async function that awaits user input and then processes it.
- To import a default export, use import ______ from 'module-name';.
- An unhandled promise rejection can be caught globally using process.on('________', handler).