Skip to content
Advertisement

Nested grouping in array of objects with id and date?

I have an array of json objects as

JavaScript

Now i want to group data for same accountid for a year. For example

JavaScript

Please guide me how can achieve this ?

Advertisement

Answer

Use forEach over items and Build an object with keys and accountId (have separate buckets for each month). Get Object.values from the object just built.

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