JavaScript card review1 min read
easyWhat is the spread operator (...) in JavaScript?
The spread operator allows iterable elements such as arrays and objects to be expanded into individual elements. It is commonly used for copying arrays, merging objects, and passing arguments.