You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/rules/no-continue.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ rule_type: suggestion
7
7
The `continue` statement terminates execution of the statements in the current iteration of the current or labeled loop, and continues execution of the loop with the next iteration. When used incorrectly it makes code less testable, less readable and less maintainable. Structured control flow statements such as `if` should be used instead.
8
8
9
9
```js
10
-
var sum =0,
10
+
let sum =0,
11
11
i;
12
12
13
13
for(i =0; i <10; i++) {
@@ -30,7 +30,7 @@ Examples of **incorrect** code for this rule:
30
30
```js
31
31
/*eslint no-continue: "error"*/
32
32
33
-
var sum =0,
33
+
let sum =0,
34
34
i;
35
35
36
36
for(i =0; i <10; i++) {
@@ -49,7 +49,7 @@ for(i = 0; i < 10; i++) {
49
49
```js
50
50
/*eslint no-continue: "error"*/
51
51
52
-
var sum =0,
52
+
let sum =0,
53
53
i;
54
54
55
55
labeledLoop:for(i =0; i <10; i++) {
@@ -70,7 +70,7 @@ Examples of **correct** code for this rule:
Copy file name to clipboardexpand all lines: docs/src/rules/no-sequences.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ rule_type: suggestion
7
7
The comma operator includes multiple expressions where only one is expected. It evaluates each operand from left to right and returns the value of the last operand. However, this frequently obscures side effects, and its use is often an accident. Here are some examples of sequences:
0 commit comments