Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 390 Bytes

for_loop.md

File metadata and controls

7 lines (4 loc) · 390 Bytes

for-loop

A for-loop is a way of going through an entire sequence of items, like a list. A for-loop "iterates" over a sequence, which means it does something to each item in that sequence. With for-loops we can carry out a command for multiple items in a sequence.

Tutorials

  • Check out the for-loop description on w3schools.