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.
Loading...
Related Quiz
- When using Promise.all(), if any promise is rejected, the entire operation is considered _________.
- How would you use mixins in ES6 to enhance classes in a library, without modifying the original source code?
- In ES6, a module imported via a relative path starting with ______ indicates it is located in the same directory.
- In the context of tree shaking, what is the significance of the "sideEffects" flag in a package.json file?
- How do prototype delegation and proto property in ES6 object literals work?