Might want to mention what the spread operator actually does, which is to spread the one argument to array.push(...arg) to multiple arguments like so: array.push(arg[0], arg[1], arg[2], ..., arg[n]).
array.push(...arg)
array.push(arg[0], arg[1], arg[2], ..., arg[n])
You're right, I didn't realise that people might not know what the ES6 spread operator does. Updated the article - thanks!
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Might want to mention what the spread operator actually does, which is to spread the one argument to
array.push(...arg)to multiple arguments like so:array.push(arg[0], arg[1], arg[2], ..., arg[n]).You're right, I didn't realise that people might not know what the ES6 spread operator does. Updated the article - thanks!