Merge pull request #291 from Bemerauld/patch-2

Below instead of Above
This commit is contained in:
Ilya Kantor 2017-11-14 11:15:10 +03:00 committed by GitHub
commit 7bfdc06adb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -239,7 +239,7 @@ The `continue` directive is a "lighter version" of `break`. It doesn't stop the
We can use it if we're done on the current iteration and would like to move on to the next. We can use it if we're done on the current iteration and would like to move on to the next.
The loop above uses `continue` to output only odd values: The loop below uses `continue` to output only odd values:
```js run no-beautify ```js run no-beautify
for (let i = 0; i < 10; i++) { for (let i = 0; i < 10; i++) {