If a default parameter references another parameter, what order must they be declared in?
- After the parameter it references
- Before the parameter it references
- It doesn't matter
- They must be declared in a separate function
In JavaScript, default parameters are evaluated at the time of the function call. Explanation should cover the order of declaration and how the referencing works.
Loading...
Related Quiz
- What is the significance of the done property in the object returned by the next() method of a generator?
- When using const with destructuring, you must provide a _________ at the time of declaration.
- How do you create a new object that inherits from an existing object in ES6?
- A function that takes another function as an argument is called a __________ function.
- When a function returns a new object each time it is called, even with the same inputs, is it considered a pure function?