When a parameter is declared with a default value, its existence in the function's arguments array will be _________.
- TRUE
- FALSE
- undefined
- nan
When a parameter is declared with a default value, its existence in the function's arguments array will be false. Default parameters do not appear in the arguments object, and accessing them through the arguments object will return undefined.
Loading...
Related Quiz
- Static methods are often used for _________ that are relevant to all instances of a class.
- Can a for...of loop be used to iterate over a generator function's yielded values?
- When using Promises with AJAX, handling network errors is done through the ______ method of the Fetch API.
- In ES6, a function parameter's default value can be another function's _________.
- What keyword is used to define a generator function in JavaScript?