averageBy
Calculates the average of an array, after mapping each element to a value using the provided function.
- Use
Array.prototype.map()to map each element to the value returned byfn. - Use
Array.prototype.reduce()to add each value to an accumulator, initialized with a value of0. - Divide the resulting array by its length.