Precedence
| Precedence from highest to lowest
|
() {} []
|
new
|
is has
|
++X --X
|
++X --X
|
+X -X *X !X sizeof classof typeof cloneof copyof
(boolean) (int) (float) (string)
|
~ !~
|
* / %
|
+ -
|
in
|
< <= > > <=>
|
== === != !==
|
&&
|
^^
|
||
|
..
|
? ??
|
=>
|
->
|
,
|
= += -= *= /= %= &= ?=
|
Add a note
|