In what way does the Spread Operator interact with iterables?

  • Spreads the iterable elements into a new array
  • Converts the iterable into a string
  • Ignores the iterable elements
  • Creates a deep copy of the iterable
The Spread Operator (...) in ES6 is used to spread the elements of an iterable (e.g., an array) into a new array. It provides a concise way to concatenate arrays, create shallow copies, and pass array elements as function arguments.
Add your answer
Loading...

Leave a comment

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