ArrayAvg()
Calculates the average of the values in an array. All elements in the array must contain values that can be automatically converted to numeric.
ArrayAvg( array=array );
Returns: Number
Examples
numbers = [ 1, 2, 3, 4 ];
avgValue = ArrayAvg( numbers );
Echo( avgValue ); // outputs 2.5
See also
- Arrays
- array.avg()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)