Iteration over a collection: for (const variable of iterable) { ... }.
for (const variable of iterable) { ... }
Collection being iterated.
Loop body.
Binding name for the current element.
Iteration over a collection:
for (const variable of iterable) { ... }.