charlottebrf / DoctorsWhoCode

My Time Manager: Your helpful time manager app created for CF: G Ruby course AW 2016 course competition project.
https://evening-lowlands-39707.herokuapp.com/
0 stars 0 forks source link

Write code to get the cumulative time value spent on activities today #16

Closed melikecode closed 7 years ago

melikecode commented 7 years ago

A user may enter time against the same activity name several times during the day (e.g. 10 minute meeting, 60 minute meeting, 20 minute meeting). At the moment, the code only shows the most recent duration entered for a given activity name (e.g. 20 minutes meeting). We need it to show the cumulative value for the day (e.g. 90 minutes meeting), for accurate graphing and reporting.

===

melikecode commented 7 years ago

Clues:

https://www.airpair.com/javascript/javascript-array-reduce

melikecode commented 7 years ago

done