While statements

While statements are loops controlled by a logical condition.

The argument to the loop is a boolean expressions.

while (<boolean expression>) {

}