Default parameters in a function are used when no argument or ________ is passed.
- undefined
- nan
- nan
- value
Default parameters in a function are used when no argument or undefined is passed. In JavaScript, if a parameter is not passed or is explicitly passed as undefined, the default value assigned to that parameter is used.
Loading...
Related Quiz
- Can a higher-order function return another function as its output?
- What happens when a generator function encounters a yield keyword?
- In ES6, what is the behavior of using super in a method when extending a class?
- What is the primary advantage of using dynamic imports in JavaScript?
- In what ways can destructuring assignment be utilized in function parameters?