What is Spread Operator? ES6 provided a new operator called spread operator that consists of three dots (...). The spread operator allows you to expand arguments for function calls, elements for array or key-value pairs for object. Example you have a function take 3 numbers as argument and calculate volume. Before