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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *