What is the primary purpose of the spread operator in ES6?

  • Spreading elements of an array or object
  • Merging two arrays
  • Concatenating strings
  • Creating a new variable
The spread operator (...) is primarily used to spread elements of an array or object, allowing them to be expanded in places where multiple elements or variables are expected. This can be useful for passing array elements as individual arguments to a function or merging arrays.
Add your answer
Loading...

Leave a comment

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