Can the super keyword be used in a class that does not extend another class?
- Yes
- No
- Only in static methods
- Only in arrow functions
No, the super keyword is used to call corresponding methods of the superclass in a subclass. If a class doesn't extend another class, there is no superclass, and using super is not valid.
Loading...
Related Quiz
- The __________ file in a module directory helps in defining the entry point for the module in ES6.
- Which method is used to catch errors in a Promise?
- Can a class in ES6 contain constructor functions?
- What happens when an iterator's next() method returns an object with done: true?
- How do enhanced object literals in ES6 facilitate the assignment of variables as properties of objects?