When you extend a class in ES6, what must you do before using this in the constructor?

  • Initialize the subclass properties
  • Call the super() method
  • Import the parent class
  • Define a new constructor
In ES6, when extending a class, you must call super() in the constructor of the subclass before using this. The super() call initializes the properties of the parent class.
Add your answer
Loading...

Leave a comment

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