Files
30-seconds-of-code/snippets/most-frequent.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

28 lines
763 B
Markdown

---
title: Most frequent element in array
tags: array
author: chalarangelo
cover: clock
firstSeen: 2020-01-03T15:32:46+02:00
lastUpdated: 2020-09-15T16:28:04+03:00
---
Returns the most frequent element in an array.
- Use `Array.prototype.reduce()` to map unique values to an object's keys, adding to existing keys every time the same value is encountered.
- Use `Object.entries()` on the result in combination with `Array.prototype.reduce()` to get the most frequent value in the array.
```js
const mostFrequent = arr =>
Object.entries(
arr.reduce((a, v) => {
a[v] = a[v] ? a[v] + 1 : 1;
return a;
}, {})
).reduce((a, v) => (v[1] >= a[1] ? v : a), [null, 0])[0];
```
```js
mostFrequent(['a', 'b', 'a', 'c', 'a', 'a', 'b']); // 'a'
```