To access a parent class's method in a child class, the __________ keyword is used inside the method.
- super
- this
- parent
- extends
In JavaScript, the super keyword is used to refer to the parent class. When used inside a method in a child class, it allows you to call the corresponding method in the parent class. This is particularly useful for accessing and invoking the parent class's method from within the child class.
Loading...
Related Quiz
- Can default parameters be expressions or function calls?
- How does inheritance of static methods differ from that of instance methods in ES6?
- In a game, how would a static method be used to keep track of the total number of players created across all instances of the player class?
- How does static analysis contribute to tree shaking in ES6 modules?
- How do Symbols contribute to better property encapsulation in objects?