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.
Loading...
Related Quiz
- What happens if a method is called on an object that does not define it but its prototype does?
- Destructuring an object within a _________ allows for directly mapping object properties to function parameters.
- Can you use const within a for...of loop to declare a variable for each iteration?
- What types of values can be added to a WeakSet?
- Imagine you are creating a gaming application with different types of characters. How would you use inheritance in ES6 classes to implement shared behaviors?