Product
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Product
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Given a list of numbers, calculate the product of multiplying the numbers with each other.
Function signature
PRODUCT(values: Array) => Number
Parameter | Description |
---|---|
Values | List of numeric values |
Examples
Formula | Return value |
---|---|
PRODUCT([100, 3, 20]) | 6000 |
PRODUCT([100, 3, 20, 0]) | 0 |
PRODUCT([]) | 0 |
Was this article helpful?