+ | Addition |
- | Subtraction |
* | Multiplication |
/ | Division |
() | Grouping operator |
% | Modulus (remainder) |
++ | Increment numbers |
-- | Decrement numbers |
== | Equal to |
=== | Equal value and equal type |
!= | Not equal |
!== | Not equal value or not equal type |
> | Greater than |
< | Less than |
>= | Greater than or equal to |
<= | Less than or equal to |
&& | Logical and |
Logical or | |
! | Logical not |
Bitwise operators in Javascript are mostly used for numerical conversions/computations.
& | AND statement |
OR statement | |
~ | NOT |
^ | XOR |
<< | Zero fill left shift |
>> | Signed right shift |
>>> | Zero fill right shift |