| Präzedenz* | Operator | Name | Kategorie | Erklärt im Video* |
|---|---|---|---|---|
| 16 | () | runde Klammern | Lesson 36 | |
| 15 | ++ | Post-Inkrement | arithmetisch | Lesson 202 |
| 15 | -- | Post-Dekrement | arithmetisch | Lesson 229 |
| 14 | ! | logische Negation | logisch | Lesson 80 |
| 12 | * | Multiplikation | arithmetisch | Lesson 32 |
| 12 | / | Division | arithmetisch | Lesson 32 |
| 12 | % | Modulo (Rest ganzzahlige Division) | arithmetisch | Lesson 40 |
| 11 | + | Addition | arithmetisch | Lesson 32 |
| 11 | - | Subtraktion | arithmetisch | Lesson 32 |
| 11 | + | String-Verkettung | Lesson 61 | |
| 9 | < | kleiner als | relational | Lesson 73 |
| 9 | <= | kleiner oder gleich | relational | Lesson 73 |
| 9 | > | größer als | relational | Lesson 73 |
| 9 | >= | größer oder gleich | relational | Lesson 73 |
| 8 | == | Gleichheit | relational | Lesson 25 |
| 8 | != | Ungleich | relational | Lesson 48 |
| 4 | && | logisches Und | logisch | Lesson 72 |
| 3 | || | logisches Oder | logisch | Lesson 69 |
| 1 | = | Zuweisung | Zuweisung | Lesson 22 |