DEV Community

Paramanantham Harrison
Paramanantham Harrison

Posted on • Originally published at learnwithparam.com on

Union of objects in javaScript based on unique value - Merging worlds using javaScript

In this tutorial, we will see examples of

  • Merging of two or more objects
  • Merging of object into an Array
  • Merging two arrays
  • Union of objects based on unique key
  • Union of objects in an array based on unique key value

Merging of two or more objects using object destructuring

Using es6 object destructuring, it is very easy to merge two objects.

const firstObj = { name: 'Vennila' };
const secondObj = { age: 26 };
// object destructuring to merge two objects
const mergedObj = { ...firstObj, ...secondObj };
console.log(mergedObj);
// result - { name: 'Vennila', age: 26 }
Enter fullscreen mode Exit fullscreen mode

What if both the object has same key, it simply merge the last objects value and have only one key value.

const firstObjWithSameKey = { name: 'Vennila', age: 26 };
const secondObjWithSameKey = { name: 'Param', city: 'Tallinn' };

const mergedObjWithSameKey = {
  ...firstObjWithSameKey,
  ...secondObjWithSameKey,
};
console.log(mergedObjWithSameKey);
// result - { name: 'Param', age: 26, city: 'Tallinn' }
Enter fullscreen mode Exit fullscreen mode

Merge objects into an array of objects

So far we have seen basic examples, now lets get one step deeper. How to merge objects into an array of objects. It uses the same technigue of destructuring but with the arrays.

const arrayOfObj = [
  {
    name: 'Ironman',
  },
  {
    name: 'Spiderman',
  },
];
const objToMergeInArray = {
  name: 'Captain America',
  from: 'Marvel Universe',
};
const mergedArrayOfObj = [...arrayOfObj, objToMergeInArray];
console.log(mergedArrayOfObj);
/* result
[ 
  { name: 'Ironman' },
  { name: 'Spiderman' },
  { name: 'Captain America', from: 'Marvel Universe' } 
] 
*/
Enter fullscreen mode Exit fullscreen mode

Merging two arrays

Merging two different array of objects is same as above, only difference will be, you need to destructure both the arrays.

[...arrayOfFirstObj, ...arrayOfSecondObj];
Enter fullscreen mode Exit fullscreen mode

Union of two objects based on key

We already covered this, its that simple. If the values are matched automatically, the objects will take the last value and merge the object. See example of mergedObjWithSameKey. It merged the name property and display the last object’s name value.

Union of objects in an array based on unique key value

This is where it gets interesting. Take this example

const firstArr = [
  {
    id: 'marvel',
    winner: 'Captain America',
  },
  {
    id: 'DC',
    winner: 'Aquaman',
  },
];

const secondArr = [
  {
    id: 'freelancer',
    winner: 'Wonder women',
  },
  {
    id: 'marvel',
    winner: 'Param', //why not
    strenths: ['fly', 'fight', 'speed'],
  },
];
Enter fullscreen mode Exit fullscreen mode

if you check both the array, both have the key value id: marvel. How to merge both the objects and show the result like this

// expected result

const mergedArray = [
  {
    id: 'marvel',
    winner: 'Param', //why not
    strenths: ['fly', 'fight', 'speed'],
  },
  {
    id: 'DC',
    winner: 'Aquaman',
  },
  {
    id: 'freelancer',
    winner: 'Wonder women',
  },
];
Enter fullscreen mode Exit fullscreen mode

Lets do it using modern javascript techniques.

Before doing it, we need to understand one javascript object type called Set.

Set is a new object type introduced in es6, it is used to create collection of distinct values.

We are going to use Set to merge our arrays, lets see it in action.

Set is a new object type introduced in es6, it is used to create collection of distinct values.

Simple example for Set

// Simple example for Set
const a = [44, 33, 22];
const b = [33, 22, 11];
const AandB = [...a, ...b];
console.log(AandB); // [44, 33, 22, 33, 22, 11]
const distinctValuesInAandBSet = new Set(AandB);
console.log(distinctValuesInAandBSet); // Set { 44, 33, 22, 11 }
const setToArray = [...distinctValuesInAandBSet];
console.log(setToArray); // [44, 33, 22, 11]
Enter fullscreen mode Exit fullscreen mode

This is very straightforward example, we just merge a one dimensional array and create the distinct set of values out of it by using Set.

Lets use the same principle for our array of objects.

const mergedArray = [...secondArr, ...firstArr];
// mergedArray have duplicates, lets remove the duplicates using Set
let set = new Set();
let unionArray = mergedArray.filter(item => {
  if (!set.has(item.id)) {
    set.add(item.id);
    return true;
  }
  return false;
}, set);
console.log(unionArray);
/*
[ { id: 'freelancer', winner: 'Wonder women' },
  { id: 'marvel',
    winner: 'Param',
    strenths: ['fly', 'fight', 'speed'] },
  { id: 'DC', winner: 'Aquaman' } ]
*/
Enter fullscreen mode Exit fullscreen mode

In the mergedArray, second array was destructured first because, we are using filter to filter out the values from one array if the id value is already present in the second array.

I heard you, this is not purely union all the content. It doesn’t deep merge all the key values from both the array.

Even though it is unionBy value of id. This example doesn’t work for all use cases.

for example, what if we need to merge the two different object only by id value. This example will just return the result of second array object, but it won’t get the property from first array object

const firstArray = [
  {
    id: 'marvel',
    winner: 'Captain America',
    weakness: ['emotion'],
  },
];

const secondArray = [
  {
    id: 'marvel',
    name: 'Param',
  },
];
Enter fullscreen mode Exit fullscreen mode

A true unionBy value should return

/* expected result
  [
    {
      id: "marvel",
      winner: "Captain America",
      weakness: ["emotion"],
      name: "Param",
    }
  ]
  */

/* Our actual result
  [
    {
      id: "marvel",
      name: "Param",
    }
  ]
  */
Enter fullscreen mode Exit fullscreen mode

We will see how to do unionBy key values and also deep merge the object from two arrays in next tutorial.

For this article, we already achieved how to merge objects and how to union array of objects based on key values in javascript.

But the drawback with this approach is,

  • it filters out the unique key values from first array
  • it also changes the ordering inside the array, not exactly merge with same ordering

Stay tuned, hope you enjoy this tutorial 😋

Top comments (0)