To inherit properties and methods from another class in ES6, use the ________ keyword.
- Inherits
- Extends
- InheritsFrom
- ExtendsFrom
In ES6, the extends keyword is used to inherit properties and methods from another class.
Loading...
Related Quiz
- In object methods, using arrow functions can lead to issues when relying on the this keyword, as it does not bind its own this, but inherits it from the ________ scope.
- What is the correct syntax to create an instance of a class in ES6?
- In functional composition, what is the result of combining two functions f and g into compose(f, g)?
- Can a static method in a parent class be overridden in a child class?
- To ensure the uniqueness of a Symbol, it is created using Symbol(__________), where the argument is optional.