math.arraySum

From RPTools Wiki
Revision as of 23:13, 14 March 2023 by Taustin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

math.arraySum() Function

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

Usage

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

Examples

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