quotient
quotient(n_op1n_op2[n_op3... ] ) =>n_result
Description
Returns the result of dividing the first operand by one or more operands. Prefix form of the / arithmetic operator.
Arguments
Value Returned
Examples
quotient(5 4 3 2 1)
=> 0
quotient(-10 -2)
=> 5
quotient(10.8 -2.2)
=> -4.909091
Related Topics
Return to top