Merge pull request #6034 from FreeCodeCamp/master

Master
pull/18182/head
Berkeley Martinez 2016-01-10 15:03:10 -08:00
commit e3338f4f94
1 changed files with 1 additions and 1 deletions

View File

@ -3726,7 +3726,7 @@
"description": [
"You can run the same code multiple times by using a loop.",
"The most common type of JavaScript loop is called a \"<code>for loop</code>\" because it runs \"for\" a specific number of times.",
"For loops are declared with three optional expressions seperated by semicolons:",
"For loops are declared with three optional expressions separated by semicolons:",
"<code>for ([initialization]; [condition]; [final-expression])</code>",
"The <code>initialization</code> statement is executed one time only before the loop starts. It is typically used to define and setup your loop variable.",
"The <code>condition</code> statement is evaluated at the beginning of every loop iteration and will continue as long as it evalutes to <code>true</code>. When <code>condition</code> is <code>false</code> at the start of the iteration, the loop will stop executing. This means if <code>condition</code> starts as <code>false</code>, your loop will never execute.",