Iteration in JavaScript: for, while, do while, for...of, for...in, iterables, iterators, generators, and yield
JavaScript supports several loop forms, plus iterator and generator protocols for custom iteration behavior.
- `for...of` iterates values
- `for...in` iterates enumerable property keys
- Generators pause and resume with `yield`
Iteration in JavaScript: for, while, do while, for...of, for...in, iterables, iterators, generators, and yield