Q2: Given a scenario where a subclass needs to modify a method inherited from a parent class, how would you implement this in ES6?
- Use the 'extends' keyword
- Utilize the 'super' keyword
- Override the method in the subclass
- Employ the 'Object.create()' method
In ES6, you can implement method overriding by defining the method with the same name in the subclass. This allows the subclass to provide a specialized implementation while still inheriting from the parent class.
Loading...
Related Quiz
- How does the uniqueness of a Symbol in JavaScript differ from a string?
- Given a scenario where you need to flatten a deeply nested array, how would you implement this using recursion in ES6?
- When chaining promises, the return value of one .then() becomes the input for the next _________.
- How does garbage collection in JavaScript affect WeakSet?
- In a project where a class needs to incorporate event-handling, logging, and validation behaviors, how would mixins and composition be used?