Conditionals and Control Flow
Allow your code to make "decisions"
A conditional statement allows the program to execute specific, likely different, blocks of code depending on the truth of of a condition, which comes in the form of a boolean variable that is either true or false. Control flow is a term that describes how specific code, often conditionals, can dictate which code runs when, or control the flow of the code.
While we continue development of our own educational articles, we recommend checking out this article on conditionals and control flow.