math.arrayMin

From RPTools Wiki
Revision as of 22:35, 9 February 2023 by Conversion script (talk | contribs) (Conversion script moved page math.arrayMin to Math.arrayMin without leaving a redirect: Converting page title to first-letter uppercase)
Jump to navigation Jump to search

math.arrayMin() Function

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

Usage

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

Examples

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

Returns:

-4