We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fafe45 commit 61b9083Copy full SHA for 61b9083
docs/src/rules/no-continue.md
@@ -15,7 +15,7 @@ for(i = 0; i < 10; i++) {
15
continue;
16
}
17
18
- a += i;
+ sum += i;
19
20
```
21
@@ -38,7 +38,7 @@ for(i = 0; i < 10; i++) {
38
39
40
41
42
43
44
@@ -57,7 +57,7 @@ labeledLoop: for(i = 0; i < 10; i++) {
57
continue labeledLoop;
58
59
60
61
62
63
@@ -75,7 +75,7 @@ var sum = 0,
75
76
for(i = 0; i < 10; i++) {
77
if(i < 5) {
78
79
80
81
0 commit comments