Product
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Product

  • Dark
    Light
  • PDF

Article Summary

Given a list of numbers, calculate the product of multiplying the numbers with each other.

Function signature

PRODUCT(values: Array) => Number
ParameterDescription
ValuesList of numeric values

Examples

FormulaReturn value
PRODUCT([100, 3, 20])6000
PRODUCT([100, 3, 20, 0])0
PRODUCT([])0

Was this article helpful?

What's Next