DEV Community

Cover image for How To Copy Properties from an Object To Another?
Islam Sayed
Islam Sayed

Posted on

3 1

How To Copy Properties from an Object To Another?

Rest operator is awesome. Here is how to copy properties from one object to another using Spread operator.

//copy properties from an object to another one
//using SPREAD OPERATOR.
const obj1 = {
    a: 2,
    b: 5
}
const obj2 = {
    ...obj1,
    c: 6
} //{a: 2, b: 5, c: 6}

Top comments (0)

👋 Kindness is contagious

Please leave a ❀ or a friendly comment on this post if you found it helpful!

Okay