Spread Operator
an introduction to spread operator, limitations of rest parameter and their solution using the spread parameter
We'll cover the following
In ES5, we often used the apply
method to call a function with a variable number of arguments. The spread operator makes it possible to achieve the exact same thing in a more compact way.
Suppose you would like to write a method that returns the sum of its arguments. Let’s write this function in ES5:
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.