Operators
From SDU
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.
To discuss or ask questions about this article, select the discussion tab above.
Arithmetic Operators
<source lang="javascript"> + Addition - Subtraction
- Multiplication
/ Division % Modulo, for example a % b will result in the remainder of a divided by b </source>
Comparison Operators
<source lang="javascript"> == != </source>
Concatenation Operators
<source lang="javascript"> + </source>
Logical Operators
<source lang="javascript"> || && ! </source>