When is a JavaScript for loop especially suitable?
for
When the number of repetitions is known in advance
When repetition must never depend on a condition
When a block must run once even if its condition starts false
When the goal is to return immediately from the current function