When you extend a class in ES6, what must you do before using this in the constructor?
- Initialize the subclass properties
- Call the super() method
- Import the parent class
- Define a new constructor
In ES6, when extending a class, you must call super() in the constructor of the subclass before using this. The super() call initializes the properties of the parent class.
Loading...
Related Quiz
- How does the event loop handle callback functions in JavaScript?
- What is a key difference between a JavaScript Object and a Map?
- If you have a configuration object that should not be altered during the execution of a program, how would you declare it using ES6 syntax?
- How can you handle potential undefined values when destructuring an object?
- What happens when you use the return keyword in a single-line arrow function?