Control Flow
Logic is no longer sequential!
If/Else If/Else Statements
if (E) {
// Insert logic here
} else if (E) {
// Insert logic here
} else {
// Insert logic here
}While Loops
while (E) {
// Insert logic here
}Do While Loops
For Loops
Aside: break and continue
break and continueLast updated