DEV Community

Discussion on: 5 Uses for the Spread Operator

Collapse
 
julietter profile image
JulietteR

Thank you for this article!

One note--I noticed a small typo in the Merge Objects example.
The second object should be named obj2

let obj1 = {a: 1, b: 2, c: 3}
let obj1 = {d: 4, e: 5, f: 6}

let merge = {...obj1, ...obj2}
// merge is {a: 1, b: 2, c: 3, d: 4, e: 5, f: 6}
Collapse
 
laurieontech profile image
Laurie

Thanks! I’ll fix that when I have a moment.