Function
|
Description
|
+
|
Operand1 is
added to operand2.
Both operands must be integers or strings containing integers,
otherwise NaN is returned.
|
-
|
Operand2 is
subtracted from operand1.
Both operands must be integers or strings containing integers,
otherwise NaN is returned. |
*
|
Operand1 is
multiplied by operand2.
Both operands must be integers or strings containing
integers, otherwise NaN is returned. |
/
|
Operand1 is
divided by operand2
Both operands must be integers or strings containing
integers, otherwise NaN is returned. The result is rounded to the
nearest integer. If operand2 is zero
then Inf is returned. |
%
|
The remainder (modulus)
of operand1
divided by operand2.
Both operands must be integers or strings containing integers,
otherwise NaN is
returned. If operand2
is zero then Inf is returned. |
match
|
Matches operand2 which
must be a
Javascript Regular Expression literal. Parentheses within the RegExp
determine
the value of result.
|
concat
|
Operand1 is
concatenated with operand2
|