mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
239 B
239 B
id | title |
---|---|
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;
}
}