How does the extends keyword function in class inheritance in ES6?

  • It creates a copy of the parent class
  • It allows a class to inherit from multiple classes
  • It creates a subclass that inherits from a specified class
  • It is used to declare a private class member
In ES6, the extends keyword is used to create a subclass that inherits from a specified class. The subclass can then access the properties and methods of the parent class. This facilitates the concept of class inheritance in JavaScript.
Add your answer
Loading...

Leave a comment

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