We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5062d3f + bf230df commit 85cb006Copy full SHA for 85cb006
1-js/02-first-steps/12-while-for/article.md
@@ -108,8 +108,8 @@ Let's examine the `for` statement part-by-part:
108
|-------|----------|----------------------------------------------------------------------------|
109
| begin | `i = 0` | Executes once upon entering the loop. |
110
| condition | `i < 3`| Checked before every loop iteration. If false, the loop stops. |
111
-| step| `i++` | Executes after the body on each iteration but before the condition check. |
112
| body | `alert(i)`| Runs again and again while the condition is truthy. |
+| step| `i++` | Executes after the body on each iteration. |
113
114
The general loop algorithm works like this:
115
0 commit comments