ArrayMax()
Returns the largest numeric value in an array. If the array parameter value is an empty array, returns zero. All elements must contain values that can be automatically converted to numeric values.
ArrayMax( array=array );
Returns: Number
Examples
Get the max value in the array
aNames = array(10412,42,33,2,999,12769,888);
dump(arrayMax(aNames));
//member function
dump(aNames.max());
See also
- Arrays
- array.max()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)