๐งtable of operators
๐ง under construction -> fix table precedence
JS โฉ statement โฉ expression โฉ operator โฉ table of operators
P
Operator
Operation
A
N
Types
15
++
post-increment
๐
null
null
--
post-decrement
๐
null
0
-
unary - (negative)
๐
1
num -> num
0
<<
shift left
L
2
(i, i) -> i
0
>>
shift right (sign extension)
L
2
(i, i) -> i
0
>>>
shift right (0 extension)
L
2
(i, i) -> i
0
!=
not equal (sloppy)
L
2
(a, a) -> b
0
!==
not equal (strict)
L
2
(a, a) -> b
0
&
bitwise AND
L
2
(i, i) -> i
0
^
bitwise XOR
L
2
(i, i) -> i
0
|
bitwise OR
L
2
(i, i) -> i
Last updated
Was this helpful?