mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
256 B
256 B
date | id | title |
---|---|---|
2020-10-30 | 3b67edf8-727e-42c4-b46d-c096b2fb350b | JavaScript Breaking Out of a Loop |
Syntax
for (let current = 20; ; current = current + 1) {
if (current % 7 == 0) {
console.log(current);
break;
}
}