Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

192
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!