While Loops

Let's take a look at some of the key features of the while loop.

We'll cover the following...

A while loop is slightly different from the previously visited for loop. Instead of relying on a defined range, it runs as long as a boolean expression holds true.

The Structure

The template for a while loop is fairly simple:

Press + to interact
while(boolean expression) {
set of operations
};

The logic of this structure lies in the boolean expression ...