Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

113
Vistas
How to combine array of objects with common id in each object with ES6 functions

Attaching the input and output formats. `

//Input
[{"id":"146","catId":"25"},
{"id":"200","catId":"25"},
{"id":"250","catId":"55"}];
//Output expected
[{"catId":"25","topicIds":["146","200"]},
{"catId":"55","topicIds":["250"]}];

`

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

reduce can be used for grouping problems. Here I'm grouping by catId and it will return a grouped object

{
  25: {
    catId: "25",
    topicIds: ["146", "200"]
  },
  55: {
    catId: "55",
    topicIds: ["250"]
  }
}

Then to get the values array use Object.values

let a = [{"id":"146","catId":"25"},
{"id":"200","catId":"25"},
{"id":"250","catId":"55"}];

let res = Object.values(a.reduce((acc,{id,catId}) => {
    acc[catId] = acc[catId] || {catId,topicIds:[]}
  acc[catId].topicIds.push(id)
  return acc
},{}))

console.log(res)

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda