CodeByte • If Statements If Statements in 60 Seconds If statements, also called conditionals, let a program make a decision. If a condition is true, the code runs. If it’s false, the code is skipped. An if statement lets the program make a decision. It checks a condition, and if that condition is true, then…

