times
times(n_op1n_op2[n_op3... ] ) =>n_result
Description
Returns the result of multiplying the first operand by one or more operands. Prefix form of the * arithmetic operator.
Arguments
Value Returned
Examples
times(5 4 3 2 1)
=> 120
times(-12 -13)
=> 156
times(12.2 -13.3)
=> -162.26
Related Topics
Return to top