Loops — for-in, while, repeat-while
Learn how to repeat tasks with for-in , while , and repeat-while loops.
Intro
Loops repeat code. Swift provides for-in, while, and repeat-while.
for-in loop
for-in iterates over ranges, arrays, or any sequence.
for i in 1...3 {
print("i =", i)
}All lessons in this course
- if/else basics
- switch — exhaustiveness, ranges, tuples, where
- Loops — for-in, while, repeat-while