Iteration

This lesson introduces to the basics of iteration.

What is iteration?

Iterative code is a block of code that runs in a loop. In other words, the same code is repeated over and over again. The idea is similar to that of recursion.

As you ...