...

/

Operator Precedence

Operator Precedence

Get familiarized with the concepts of operator precedence.

Expressions can be chained with more than one operator. For example, the following line contains four expressions chained with three operators:

a = b + c * d // three operators: =, +, and
...