Iteration
From Coderwiki
More actions
Iteration is essentially looping.
Loops generally involve repeating some code a certain number of times, or until a condition is met.
Types of iteration
There are two main forms of loops in programming languages:
- Count controlled: for loop
- Condition controlled: while loop