Update README.md

This commit is contained in:
Teascade 2017-08-25 23:50:54 +00:00
parent d99af5634d
commit a36ff43555
1 changed files with 1 additions and 1 deletions

View File

@ -228,4 +228,4 @@ for (let i = 0; i < 10; i++) {
- The first part (`let i = 0` in this example) is the beginning-expression. It can be any expression, and it will be executed as the loop begins weather or not the scope inside the loop will be accessed.
- The second part (`i < 10` in this example) is the condition defining weather the loop-scope will be accessed or not.
- The third part (`i++` in this example) is the step-expression, which will be executed after each execution of the loop-scope.
- Otherwise `for` is identical to [`while`]("while")
- Otherwise `for` is identical to [`while`](#while)