We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17e846a commit 3581bc7Copy full SHA for 3581bc7
snippets/17-breaking-nested-loops.js
@@ -13,7 +13,7 @@ for (const i of arr1) {
13
for (const j of arr2) {
14
loop3:
15
for (const k of arr3) {
16
- console.info(i,j,k); // returns only 1 1 1 as the loop is stopped bu the `break loop1` statement
+ console.info(i,j,k); // returns only 1 1 1 as the loop is stopped by the `break loop1` statement
17
break loop1;
18
}
19
0 commit comments