math.arrayProduct

From RPTools Wiki
Revision as of 15:06, 16 May 2020 by Selquest (talk | contribs) (Adding documentation for math.arrayProduct() function coming in 1.7)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

math.arrayProduct() Function

Introduced in version 1.7
Multiplies together the contents of a JSON Array. Only allows numeric elements - any non-numeric values will produce an error.

Usage

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

Examples

[h: theArray = json.append("", 6, 2.5, -4)]
[r: math.arrayProduct(theArray)]
Returns:
-60.0