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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *