Nested Loops
Lesson
Nested loops are loops used inside the body of another loop – loops can contain any code including another loop. The inner loops will run all of its iterations each time the outer loop runs.
This example draws multiple squares.
Last updated
Was this helpful?