DEV Community

Discussion on: JavaScript Katas: Missing values

Collapse
 
pentacular profile image
pentacular • Edited

This doesn't look like a very reasonable use of reduce.

I'd suggest starting with something like this.

const count = new Map();
for (const item of list) {
  count.set(item, (count.get(item) || 0) + 1);
}