Spread Operator
The spread operator (`...`) in JavaScript allows you to expand an iterable (like an array or string) into individual elements. It's commonly used to combine arrays, copy arrays, or pass multiple elements as arguments to a function. For example, you can merge two arrays by using `[...array1, ...array2]`, or create a shallow copy of an array with `[...array]`.
Comments
Post a Comment