Skip to content
Advertisement

lodash new object from array of objects with properties

So I have an array of people, with their names and money.

JavaScript

I want, using lodash and chaining, to return an object with the name and money of richest person even if that person has multiple objects in the array, summarizing the total amount of money. Return object should look something like this, without address.

JavaScript

The steps in my mind

  1. Sum the money for all duplicate persons in the array into new array.
  2. Find the highest money value. max()?
  3. Return new object of richest person.

I’m new to lodash and functional programming. lodash documentation and chaining doesn’t make much sense to me at this stage, lots of terminology I don’t understand like iteratee, guarded, identity…etc

Which functions can I use to achieve this?

Advertisement

Answer

Using regular Lodash:

  1. Use _.groupBy() to collect values together based on name. This results in an object like:
JavaScript
  1. Collapse the groups using _.mapValues() and _.sumBy the money property. Result is:
JavaScript
  1. Use _.entries() to get key-value pairs and _.map() them into objects with name and money properties using _.zipObject() (Credit to Ori Drori):
JavaScript
  1. Pick the object with highest money value with _.maxBy.

This can be achieved with implicit chaining:

JavaScript
JavaScript

The same can also be done using Lodash FP by composing functions into a chain of operations:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement