This commit is contained in:
cluah 2019-08-27 17:43:54 -04:00 committed by GitHub
parent 4d305484bd
commit a301935df2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -300,7 +300,7 @@ This is just another reason not to use the question mark operator `?` instead of
Sometimes we need to break out from multiple nested loops at once. Sometimes we need to break out from multiple nested loops at once.
For example, in the code below we loop over `i` and `j`, prompting for the coordinates `(i, j)` from `(0,0)` to `(3,3)`: For example, in the code below we loop over `i` and `j`, prompting for the coordinates `(i, j)` from `(0,0)` to `(2,2)`:
```js run no-beautify ```js run no-beautify
for (let i = 0; i < 3; i++) { for (let i = 0; i < 3; i++) {