Control Flow

Programs become much more powerful when we make decisions, skip over, or repeat certain parts of our code. We call this "controlling the flow of our code".

Section Overview

1. If this then thatControl the flow of a program by handling if this then that decisions.2. LoopsIterate over collections of items efficiently.