Expressions
Syntax Operators Precedence Associativity
SequenceExpression

,

0 Left
AssignmentExpression

=, *=, %=, +=, -=, <<=, >>=, >>>=, &=, ^=, |=

1 Right
ConditionalExpression

● ? ● : ●

2 Right
LogicalOrExpression

||

3 Left
LogicalAndExpression

&&

4 Left
BitwiseOrExpression

|

5 Left
BitwiseXorExpression

^

6 Left
BitwiseAndExpression

&

7 Left
EqualityExpression

==, !=, ===, !==

8 Left
RelationalExpression

<, >, <=, >=, instanceof, in

9 Left
ShiftExpression

<<, >>, >>>

10 Left
AdditiveExpression

+, -, add

11 Left
MultiplicativeExpression

*, /, %

12 Left
PrefixExpression

delete, void, typeof, +, -, ~, !, ++●, --●

13
PostfixExpression

●++, ●--

14
MemberExpression

new ●, new ●(●), ●(●), ●.●, ●[●]

15
ParenthesizedExpression

(●)

16
PrimaryExpression 17