M
M
massef2020-05-12 13:54:21
JavaScript
massef, 2020-05-12 13:54:21

How to form an object with a new structure based on the current one?

Hello.
Initial data:

const data = [
  {name: "Аня", count: 21},
  {name: "Петя", count: 40},
  {name: "Петя", count: 7},
  {name: "Аня", count: 4},
  {name: "Никита", count: 49}
]

There are no problems with finding the same values ​​of the name key , but it is not possible to make a new object:
const newData = {
  "Аня": [
    {name: "Аня", count: 21},
    {name: "Аня", count: 4}
  ],
  "Петя": [
    {name: "Петя", count: 40},
    {name: "Петя", count: 7}
  ],
  "Никита": [
    {name: "Никита", count: 49}
  ]
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
0
0xD34F, 2020-05-12
@massef

data.reduce((acc, n) => ((acc[n.name] = acc[n.name] || []).push(n), acc), {})

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question