There are three loop types: while, for, do/while. The while is the most common; for loops are used when a value runs from a starting to an ending value with a constanct increment or decrement; do/while loops are appropriate when the loop statements are executed at least once.