Skip to content
Advertisement

JavaScript: how can I merge these two arrays of incomplete objects and make an array of complete objects

I have two arrays of objects

JavaScript

I need to write a function to output an array with objects with the same name being merged into one.

JavaScript

As you can see here, objects that share the same name are merged into one object with a few exceptions:

  1. if type field is missing, we would need to add it and make it undefined
  2. if amount field is missing, we need to add it and make it 0

Here is my attempt:

JavaScript

Besides the fact that it has a really bad time complexity O(n^2). It actually has a bug where if an object only appears in b array, that object will be omitted entirely from the new array.

Can anyone try to help me come up with a more robust and efficient algorithm to tackle this problem?

Advertisement

Answer

Make a collection whose keys are the names, whose values are the combined objects, which starts out with an undefined type and an amount of 0. Iterate through both arrays, assigning the property values as needed, then at the end, take the collection’s values:

JavaScript
Advertisement