In a derived class, if you omit the constructor, JavaScript automatically calls super with _______.
- Arguments of the derived class
- Undefined
- nan
- Arguments of the parent class
If the derived class constructor is omitted, JavaScript implicitly adds one, calling super() with undefined as arguments. This ensures the parent class constructor is invoked.
Loading...
Related Quiz
- Which array method would you use to transform an array into a single value?
- A pure function always returns the same output given the same _________.
- When destructuring function parameters, _________ can be used to handle undefined input.
- What method is used to specify the code to execute after a Promise is fulfilled?
- To handle errors in an async function, you should use a try...catch __________.