difference
difference(n_op1n_op2[n_op3... ] ) =>n_result
Description
Returns the result of subtracting one or more operands from the first operand. Prefix form of the - arithmetic operator.
Arguments
Value Returned
Examples
difference(5 4 3 2 1)
=> -5
difference(-12 13)
=> -25
difference(12.2 -13)
=> 25.2
Related Topics
Return to top