Computes the mean of the values in array.
array
_.mean([4, 2, 8, 6]);// => 5 Copy
_.mean([4, 2, 8, 6]);// => 5
Returns the mean.
Generated using TypeDoc
Computes the mean of the values in
array
.Example