To override a static method in a subclass, you need to use the same method name and the _________ keyword.
- super
- override
- static
- extend
To override a static method in a subclass, you use the same method name as the parent class and the super keyword. This allows you to call the parent class's static method while providing a new implementation in the subclass.
Loading...
Related Quiz
- How does immutability relate to pure functions in JavaScript?
- What is the primary advantage of using template literals over string concatenation?
- Can an arrow function have its own this context?
- What happens when you use the return keyword in a single-line arrow function?
- Describe the implementation of an async function that awaits user input and then processes it.