Iterate

A sequence of instructions in a program repeated until a certain Condition is reached: – with a “for Loop”, the instructions are repeated a certain number of times – with a “while” Loop, the instructions are repeated until a given Condition becomes false – with a “forever Loop” (also known as an “infinite” or “endless” Loop), the instructions are repeated endlessly.

Andrew Thawley Avatar