What happens when undefined is passed to a function with a default parameter?
- The default parameter is used
- An error is thrown
- The function assigns a default value
- It takes the value 'undefined'
When 'undefined' is passed, the default parameter is used. Explanation should cover how default parameters handle 'undefined' and when they come into play.
Loading...
Related Quiz
- In destructuring assignment, _________ can be used to gather the rest of the elements/properties into a new array or object.
- What is the purpose of the WeakMap and WeakSet in ES6 compared to Map and Set?
- How does a for...of loop differ from a for...in loop in terms of iteration?
- What is the return value when accessing a Map object's element with a non-existing key?
- Is it possible to destructure properties from nested objects?