Skip to content

Commit 80b0485

Browse files
docs: replace var with let and const in rule example (#19434)
1 parent ebfe2eb commit 80b0485

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
lines changed

docs/src/rules/no-continue.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rule_type: suggestion
77
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.
88

99
```js
10-
var sum = 0,
10+
let sum = 0,
1111
i;
1212

1313
for(i = 0; i < 10; i++) {
@@ -30,7 +30,7 @@ Examples of **incorrect** code for this rule:
3030
```js
3131
/*eslint no-continue: "error"*/
3232

33-
var sum = 0,
33+
let sum = 0,
3434
i;
3535

3636
for(i = 0; i < 10; i++) {
@@ -49,7 +49,7 @@ for(i = 0; i < 10; i++) {
4949
```js
5050
/*eslint no-continue: "error"*/
5151

52-
var sum = 0,
52+
let sum = 0,
5353
i;
5454

5555
labeledLoop: for(i = 0; i < 10; i++) {
@@ -70,7 +70,7 @@ Examples of **correct** code for this rule:
7070
```js
7171
/*eslint no-continue: "error"*/
7272

73-
var sum = 0,
73+
let sum = 0,
7474
i;
7575

7676
for(i = 0; i < 10; i++) {

docs/src/rules/no-labels.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Examples of **correct** code for this rule:
7676
```js
7777
/*eslint no-labels: "error"*/
7878

79-
var f = {
79+
const f = {
8080
label: "foo"
8181
};
8282

docs/src/rules/no-magic-numbers.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rule_type: suggestion
88
They should preferably be replaced by named constants.
99

1010
```js
11-
var now = Date.now(),
11+
const now = Date.now(),
1212
inOneHour = now + (60 * 60 * 1000);
1313
```
1414

@@ -24,7 +24,7 @@ Examples of **incorrect** code for this rule:
2424
```js
2525
/*eslint no-magic-numbers: "error"*/
2626

27-
var dutyFreePrice = 100,
27+
const dutyFreePrice = 100,
2828
finalPrice = dutyFreePrice + (dutyFreePrice * 0.25);
2929
```
3030

@@ -35,9 +35,9 @@ var dutyFreePrice = 100,
3535
```js
3636
/*eslint no-magic-numbers: "error"*/
3737

38-
var data = ['foo', 'bar', 'baz'];
38+
const data = ['foo', 'bar', 'baz'];
3939

40-
var dataLast = data[2];
40+
const dataLast = data[2];
4141
```
4242

4343
:::
@@ -47,7 +47,7 @@ var dataLast = data[2];
4747
```js
4848
/*eslint no-magic-numbers: "error"*/
4949

50-
var SECONDS;
50+
let SECONDS;
5151

5252
SECONDS = 60;
5353
```
@@ -61,9 +61,9 @@ Examples of **correct** code for this rule:
6161
```js
6262
/*eslint no-magic-numbers: "error"*/
6363

64-
var TAX = 0.25;
64+
const TAX = 0.25;
6565

66-
var dutyFreePrice = 100,
66+
const dutyFreePrice = 100,
6767
finalPrice = dutyFreePrice + (dutyFreePrice * TAX);
6868
```
6969

@@ -86,8 +86,8 @@ Examples of **correct** code for the sample `{ "ignore": [1] }` option:
8686
```js
8787
/*eslint no-magic-numbers: ["error", { "ignore": [1] }]*/
8888

89-
var data = ['foo', 'bar', 'baz'];
90-
var dataLast = data.length && data[data.length - 1];
89+
const data = ['foo', 'bar', 'baz'];
90+
const dataLast = data.length && data[data.length - 1];
9191
```
9292

9393
:::
@@ -121,7 +121,7 @@ Examples of **correct** code for the `{ "ignoreArrayIndexes": true }` option:
121121
```js
122122
/*eslint no-magic-numbers: ["error", { "ignoreArrayIndexes": true }]*/
123123

124-
var item = data[2];
124+
const item = data[2];
125125

126126
data[100] = a;
127127

@@ -243,9 +243,9 @@ Examples of **incorrect** code for the `{ "enforceConst": true }` option:
243243
```js
244244
/*eslint no-magic-numbers: ["error", { "enforceConst": true }]*/
245245

246-
var TAX = 0.25;
246+
let TAX = 0.25;
247247

248-
var dutyFreePrice = 100,
248+
let dutyFreePrice = 100,
249249
finalPrice = dutyFreePrice + (dutyFreePrice * TAX);
250250
```
251251

@@ -262,11 +262,11 @@ Examples of **incorrect** code for the `{ "detectObjects": true }` option:
262262
```js
263263
/*eslint no-magic-numbers: ["error", { "detectObjects": true }]*/
264264

265-
var magic = {
265+
const magic = {
266266
tax: 0.25
267267
};
268268

269-
var dutyFreePrice = 100,
269+
const dutyFreePrice = 100,
270270
finalPrice = dutyFreePrice + (dutyFreePrice * magic.tax);
271271
```
272272

@@ -279,13 +279,13 @@ Examples of **correct** code for the `{ "detectObjects": true }` option:
279279
```js
280280
/*eslint no-magic-numbers: ["error", { "detectObjects": true }]*/
281281

282-
var TAX = 0.25;
282+
const TAX = 0.25;
283283

284-
var magic = {
284+
const magic = {
285285
tax: TAX
286286
};
287287

288-
var dutyFreePrice = 100,
288+
const dutyFreePrice = 100,
289289
finalPrice = dutyFreePrice + (dutyFreePrice * magic.tax);
290290
```
291291

docs/src/rules/no-sequences.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rule_type: suggestion
77
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:
88

99
```js
10-
var a = (3, 5); // a = 5
10+
let a = (3, 5); // a = 5
1111

1212
a = b += 5, a + b;
1313

docs/src/rules/unicode-bom.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Example of **correct** code for this rule with the `"always"` option:
3535

3636
/*eslint unicode-bom: ["error", "always"]*/
3737

38-
var abc;
38+
let abc;
3939
```
4040

4141
:::
@@ -47,7 +47,7 @@ Example of **incorrect** code for this rule with the `"always"` option:
4747
```js
4848
/*eslint unicode-bom: ["error", "always"]*/
4949

50-
var abc;
50+
let abc;
5151
```
5252

5353
:::
@@ -61,7 +61,7 @@ Example of **correct** code for this rule with the default `"never"` option:
6161
```js
6262
/*eslint unicode-bom: ["error", "never"]*/
6363

64-
var abc;
64+
let abc;
6565
```
6666

6767
:::
@@ -75,7 +75,7 @@ Example of **incorrect** code for this rule with the `"never"` option:
7575

7676
/*eslint unicode-bom: ["error", "never"]*/
7777

78-
var abc;
78+
let abc;
7979
```
8080

8181
:::

0 commit comments

Comments
 (0)