clarify text (#34037)

added the to sentences and clarified a question.
This commit is contained in:
Jeff Thompson
2019-05-11 11:44:32 -05:00
committed by The Coding Aviator
parent 5e4a364e98
commit 1da5d765e9

View File

@ -9,11 +9,11 @@ The for loop has the following syntax:
code block to be executed
}
[initialization] is executed before the loop (the code block) starts.
The [initialization] is executed before the loop (the code block) starts.
[condition] defines the condition for running the loop (the code block).
The [condition] defines the condition for running the loop (the code block).
[final-expression] is executed each time after the loop (the code block) has been executed.
The [final-expression] is executed each time after the loop (the code block) has been executed.
## Example in JavaScript:
@ -30,11 +30,11 @@ From the example above, you can read:
[final-expression] increases a value (i++) each time the code block in the loop has been executed.
## Why we need "for loops"?
## Why do we need "for loops"?
For loops are used to loop through a block of code a known number of times. Sometimes it is the computer that knows how many times, not you, but it is still known.
For loops are used to loop through a block of code for a known number of times. Sometimes only the computer knows how many times the loop will occur, not you, either way it is still known.
Checkout some of our other articles on loops:
* [While Loop</a>
* <a href='http://forum.freecodecamp.com/t/javascript-for-in-loop/14665' target='_blank' rel='nofollow'>For In Loop</a>
* <a href='http://forum.freecodecamp.com/t/javascript-for-in-loop/14665' target='_blank' rel='nofollow'>For In Loop</a>