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