Find the mean of a numeric array.
Array with values
Mean of values
mean([2, 1, 3]); // Returns 2 Copy
mean([2, 1, 3]); // Returns 2
Find the mean of a collection of values.
Rest
Collection of values
mean(2, 1, 3); // Returns 2 Copy
mean(2, 1, 3); // Returns 2
Generated using TypeDoc
Find the mean of a numeric array.