Merge multiple Javascript objects into one object with object merge
You can use this object-merge Javascript component to merge multiple objects into one object without mutating the original objects.
Example:
`const o1 = { a: 1 };
const o2 = { b: 2 };
const o3 = { c: 3 };
const obj = merge(o1, o2, o3);
console.log(obj); // { a: 1, b: 2, c: 3 }
console.log(o1); // { a: 1 } does not mutate objects`
Written by Codi
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#