In a class hierarchy, if a method is overridden, how can you call the method from the parent class?
- Using this.method()
- super.method()
- parent.method()
- class.method()
The 'super' keyword is used to call the overridden method from the parent class. It ensures that the overridden method in the subclass is bypassed, and the method from the parent class is invoked.
Loading...
Related Quiz
- To optimize tree shaking, developers should avoid _______ side effects in their module code.
- How does a pure function handle dependencies or external variables?
- In ES6, which scenario would necessitate using let over const?
- In the context of recursion, how can destructuring assignments in ES6 improve code clarity?
- In ES6, can a class extend more than one class at a time?