It will iterate through each of the provided values array,
by the provided iteratee function
and add the resulting numbers returned by the said iteratee function to produce the sum,
to then be divided by the values.length to produce the desired mean.
It will iterate through each of the provided
values
array, by the providediteratee
function and add the resulting numbers returned by the saiditeratee
function to produce thesum
, to then be divided by thevalues.length
to produce the desiredmean
.