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

Name of an array

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