How do you create a new object that inherits from an existing object in ES6?
- Object.create()
- Object.inherit()
- Object.extend()
- Object.instantiate()
In ES6, the Object.create() method is used to create a new object that inherits from an existing object. It sets up prototype chaining, allowing the new object to inherit properties and methods from the existing one.
Loading...
Related Quiz
- A function that takes another function as an argument is called a __________ function.
- Is it possible to call a static method from another static method within the same class?
- When applied to a string, the spread operator will split it into individual '__________'.
- How would you use a for...of loop to iterate over a string?
- To re-export all named exports from a module, use export * from _________.