Math: product
Calculates the product of all provided numbers.
Example
# Example for objects:
Input: [1, 3, 4, 5]
Formula: 1 * 3 * 4 * 5
Ouput: 60
# Example with default multiplier: 10
Input: [1, 2, 3, 4]
Formula: 1 * 3 * 4 * 5 * 10
Ouput: 600
Parameters
Default multiplier
Multiply the final product to this configured number.
Input
Number (multiple)
Any numbers.
Output
Number
The product of all provided numbers.