What does the spread operator (...) do with an array?
- A Removes duplicate elements
- B Expands the array into individual elements
- C Sorts the array
- D Converts the array to a string
Answer
Expands the array into individual elements
Spread expands an iterable into individual elements, useful for copying arrays, merging them, and passing arrays as function arguments.





