In javascript Spread operator is represented by three dots ... and is used to expand or spread out elements of an iterable such as an array, string, object.
Here are few common use cases:
Copying an array
const originalArray = [10,20,30];
const cop...