Curriculum Foundations Loops exercise 3 · mcq
Loops
TypeScript writes infinite loops as while (true). Go has a
shorter idiomatic form — drop the condition entirely. Pick the
canonical Go translation.
TypeScript reference
About this theme
Go has one loop keyword: for. Three shapes:
for i := 0; i < n; i++ { ... }— classic.for cond { ... }— while-style.for { ... }— infinite, exit viabreakorreturn.
No while, no do. continue, break, and labelled breaks behave as you'd expect. The range form is its own theme (next module).