Q2: Given a scenario where a subclass needs to modify a method inherited from a parent class, how would you implement this in ES6?

  • Use the 'extends' keyword
  • Utilize the 'super' keyword
  • Override the method in the subclass
  • Employ the 'Object.create()' method
In ES6, you can implement method overriding by defining the method with the same name in the subclass. This allows the subclass to provide a specialized implementation while still inheriting from the parent class.
Add your answer
Loading...

Leave a comment

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