PRODUCT
Last updated
Was this helpful?
Last updated
Was this helpful?
The function PRODUCT takes a List of Numbers and multiplies them all together.
This function takes a list of as input. It outputs a single Number: the product of every number in the List, multiplied together.
list_of_numbers (required, type: List) A list of Numbers to multiply together.
result_number (type: Number) The Number representing the product of all the Numbers in the given List.
The following example takes a List of Numbers and returns the product of all the Numbers in the given List: