When destructuring function parameters, _________ can be used to handle undefined input.
- Default parameter
- Optional chaining
- Nullish coalescing
- Early binding
When destructuring function parameters, the correct option is the "Default parameter." Default parameters in JavaScript allow you to provide a default value for a function parameter if no value or undefined is passed. This helps in handling undefined input gracefully.
Loading...
Related Quiz
- What happens if you try to use a for...of loop on an object that does not implement the iterable protocol?
- In ES6, how can you define a method inside an object literal?
- In ES6, what is the role of the 'package.json' file in module resolution?
- In a scenario where an application needs to make several API calls and only proceed after all have successfully completed, what Promise method would be most appropriate?
- In a for...of loop, the _________ method of an iterable object is called to retrieve values.