If a class extends another class, the constructor of the child class must call _______ to access the parent's properties.
- super()
- parent()
- this()
- extend()
If a class extends another class, the constructor of the child class must call super() to access the parent's properties. The super() function is used to invoke the constructor of the parent class, ensuring that the parent's properties are initialized correctly.
Loading...
Related Quiz
- What is the significance of the done property in the object returned by the next() method of a generator?
- In a situation where you have to iterate through a complex data structure (like a tree), how can generator functions simplify the process?
- How do dynamic imports affect the performance of a web application?
- When using relative paths in ES6 module imports, what does './' and '../' signify?
- When chaining promises, the return value of one .then() becomes the input for the next _________.