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
| Argument | Description |
|---|---|
|
array
array,
required
|
edit
Name of an array |
Examples
editGet 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 open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)