0Pricing
Swift Academy · Lesson

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

  1. if/else basics
  2. switch — exhaustiveness, ranges, tuples, where
  3. Loops — for-in, while, repeat-while
← Back to Swift Academy