You are viewing an old version of this page. View the current version.
Compare with Current View Version History
Version 1 Next »
Item
Description
+
Addition
Add two variables together to get the result.
Example: 3 + 4 The result will be 7.
-
Subtraction
Subtract one variable from another to get the result.
Example: 7 - 3 The result will be 4.
*
Multiplication
/
Division
%
Modulus
&&
Logical AND
||
Logical OR
!
Logical NOT
<
Less Than
>
Greater Than
<=
Less than or Equal to
>=
Greater than or Equal to
==
Equal to
===
Instance of
!=
Not equal to
in
In
=
Assignment
+=
Addition Assignment
-=
Subtraction Assignment
*=
Multiplication Assignment
/=
Division Assignment
++
Increment Operator
--
Decrement Operator
~
Bitwise invert
Remainder
&
Bitwise AND
|
Bitwise OR
^
Bitwise XOR
<<
Bitwise Shift Left
>>
Bitwise Shift Right (Signed)
>>>
Bitwise Shift Right (Zero Filling)
typeof
void
new
delete
,
?…:
0 Comments