Operator Precedence
Get familiarized with the concepts of operator precedence.
We'll cover the following...
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
...