Skip to main content

product

Returns the result of multiplying two or more numbers.

Parameters

  • X (number)

    The first number to multiply.

  • Y (number)

    The second number to multiply. Additional numbers may be added.

Examples

ATL in Script

Result

[[product(5, 2)]]

10

[[product(5, -2)]]

-10

[[product(5, 2, 10)]]

100

[[product(5.5, 1.5)]]

8.25

[[product(2, 3, 4, 1.5)]]

36