Using rest parameters alongside default parameters can result in more concise and flexible function definitions.

  • Spread Operators
  • Arrow Functions
  • Template Literals
  • Destructuring Assignment
In JavaScript, rest parameters (...) allow a function to accept an indefinite number of arguments as an array. Combining rest parameters with default parameters enables the creation of more versatile and compact functions. The spread operator, which is the correct option, is used to collect function arguments as an array.
Add your answer
Loading...

Leave a comment

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