Operators and Loops

Comparision Operators

You can evaluate a situation by comparing one value in the script to what you expect it might be. The result will be a boolean.

Loops

Loops check a condition. If it returns true, a code block will run. Then the condition will be checked again, & if it still returns true, the code block will run again. It will repeat until the condition returns false.

Using While Loops