What is the Spread operator in JavaScript?
The spread operator will copy the content of an iterable element like an array or a string. It will spread the content and won't mutate the original element. The syntax is three dots (...) and then the name of the element to copy.
Let's see an exampl...
blog.mariobarcelo.dev1 min read