Loops
#loop #forloop #whileloop #forwhileloop #conditionals
Overview
For vs While
For Loop
let platforms = ["iOS", "macOS", "tvOS", "watchOS"]
// array
// os: loop variable
for os in platforms {
print("Swift works great on \(os).")
}
// loop iteration
/*
print:
Swift works great on iOS.
Swift works great on macOS.
Swift works great on tvOS.
Swift works great on watchOS.
*/Loop over a fixed range of numbers
Nested Loops
Loop without variable
Examples
While Loop
Skipping Loop items
Breaking in a point
Continue vs Break
FizzBuzz
Sources
Videos
Articles / Documents
Last updated