When used in a function argument, what does the rest operator do with the supplied arguments?

  • Gathers them into an array
  • Ignores them
  • Converts them to a string
  • Spreads them to all variables
The rest operator (...) in a function parameter allows you to gather all the remaining arguments into a single array. This is helpful when you have a variable number of arguments and want to process them as an array within the function.
Add your answer
Loading...

Leave a comment

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