👾 add missed break line

This commit is contained in:
Lavrentiy Rubtsov 2022-05-27 20:19:36 +06:00 committed by GitHub
parent 293c9b7f47
commit 15ed0d0953
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -340,6 +340,7 @@ The `break <labelName>` statement in the loop below breaks out to the label:
// do something with the value...
}
}
alert('Done!');
```