Skip to content
Advertisement

How to concataecance object array values of duplicates

I have an object that contains duplicate id properties and I want to reduce them to one array for each. I only figured out a way to find unique ids, but how can I concat the name attribute?

JavaScript

Desired result:

JavaScript

Advertisement

Answer

Simple reduce to combine and using Object.values to get the result you are after.

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