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

191
Vistas
How to sum amount based on the occurrences of repeated dates in an array of objects in JavaScript?

I have this array

const data =[
             {total: 90, date:"2021-11-16T07:20:23.000Z"},
             {total: 10, date:"2021-11-16T07:20:23.000Z"},
             {total: 50, date:"2021-11-17T07:20:23.000Z"}
            ];

i want to sort this array so the objects that have same date i want to sum the values of the total and the number of these objects with same date with new property called count. result should looks like

const newData =[
                { total: 100, date:"2021-11-16T07:20:23.000Z", count:2},
                { total: 50, date:"2021-11-17T07:20:23.000Z", count:1}
              ];
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Start with getting an array of unique date occurence with the help of ...new Set(), then loop through those and when looping filter the original array and map the values.

As others have suggested, nobody here will provide you with the complete code, but at least now you have an idea of how to start.

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