numeros que mais se Repetem em Um Array
function getMostFrequent (arr) {
const hashmap = arr.reduce ((acc, val) => {
acc [val] = (acc [val] || 0) + 1
return acc
}, {})
return Object.keys (hashmap ) .reduce ((a, b) => hashmap [a]> hashmap [b]? a: b)
}
Blue-eyed Buffalo