In ES6, can a class extend more than one class at a time?

  • Yes
  • No
  • Only if the classes have a common ancestor
  • Only in certain scenarios
In ES6, a class can extend only one other class at a time. Unlike some other programming languages that support multiple inheritance, JavaScript (ES6) does not allow a class to directly extend more than one class. This design choice helps avoid complications related to ambiguity and conflicts that may arise with multiple inheritance.
Add your answer
Loading...

Leave a comment

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