math.arraySum: Difference between revisions
Jump to navigation
Jump to search
(Adding documentation for math.arraySum() function coming in 1.7) |
m (Conversion script moved page math.arraySum to Math.arraySum without leaving a redirect: Converting page title to first-letter uppercase) |
(No difference)
|
Revision as of 22:35, 9 February 2023
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)]
5.5