You now control which code runs based on conditions. You can use if-else for flexible conditions, switch for exact matches, and ternary for simple inline choices.
In the next section, you'll learn loops. Loops repeat code multiple times. Combined with conditions, you'll be able to process lists, repeat actions, and build more complex programs.