math.arrayProduct: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page math.arrayProduct to Math.arrayProduct without leaving a redirect: Converting page title to first-letter uppercase) |
m (Conversion script moved page Math.arrayProduct to math.arrayProduct: Converting page titles to lowercase) |
(No difference)
|
Revision as of 23:39, 9 February 2023
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)]
-60.0