math.arrayMax: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(Adding documentation for math.arrayMax() function coming in 1.7)
(No difference)

Revision as of 18:39, 16 May 2020

math.arrayMax() Function

Introduced in version 1.7
Find the maximum value in a JSON Array. Only allows numeric elements - any non-numeric values will produce an error.

Usage

[h: result = math.arrayMax(array)]

Examples

[h: theArray = json.append("", 1, 3, 5.5, -4)]
[r: math.arrayMax(theArray)]

Returns:

5.5