Skip to content

Commit 350f2b9

Browse files
docs: rewrite some examples with var using let and const (#19404)
1 parent 93c325a commit 350f2b9

6 files changed

+27
-27
lines changed

docs/src/rules/no-plusplus.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ rule_type: suggestion
77
Because the unary `++` and `--` operators are subject to automatic semicolon insertion, differences in whitespace can change semantics of source code.
88

99
```js
10-
var i = 10;
11-
var j = 20;
10+
let i = 10;
11+
let j = 20;
1212

1313
i ++
1414
j
1515
// i = 11, j = 20
1616
```
1717

1818
```js
19-
var i = 10;
20-
var j = 20;
19+
let i = 10;
20+
let j = 20;
2121

2222
i
2323
++
@@ -36,10 +36,10 @@ Examples of **incorrect** code for this rule:
3636
```js
3737
/*eslint no-plusplus: "error"*/
3838

39-
var foo = 0;
39+
let foo = 0;
4040
foo++;
4141

42-
var bar = 42;
42+
let bar = 42;
4343
bar--;
4444

4545
for (i = 0; i < l; i++) {
@@ -56,10 +56,10 @@ Examples of **correct** code for this rule:
5656
```js
5757
/*eslint no-plusplus: "error"*/
5858

59-
var foo = 0;
59+
let foo = 0;
6060
foo += 1;
6161

62-
var bar = 42;
62+
let bar = 42;
6363
bar -= 1;
6464

6565
for (i = 0; i < l; i += 1) {

docs/src/rules/no-proto.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Examples of **incorrect** code for this rule:
1919
```js
2020
/*eslint no-proto: "error"*/
2121

22-
var a = obj.__proto__;
22+
const a = obj.__proto__;
2323

24-
var a = obj["__proto__"];
24+
const a1 = obj["__proto__"];
2525

2626
obj.__proto__ = b;
2727

@@ -37,11 +37,11 @@ Examples of **correct** code for this rule:
3737
```js
3838
/*eslint no-proto: "error"*/
3939

40-
var a = Object.getPrototypeOf(obj);
40+
const a = Object.getPrototypeOf(obj);
4141

4242
Object.setPrototypeOf(obj, b);
4343

44-
var c = { __proto__: a };
44+
const c = { __proto__: a };
4545
```
4646

4747
:::

docs/src/rules/no-regex-spaces.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ related_rules:
1313
Regular expressions can be very complex and difficult to understand, which is why it's important to keep them as simple as possible in order to avoid mistakes. One of the more error-prone things you can do with a regular expression is to use more than one space, such as:
1414

1515
```js
16-
var re = /foo bar/;
16+
const re = /foo bar/;
1717
```
1818

1919
In this regular expression, it's very hard to tell how many spaces are intended to be matched. It's better to use only one space and then specify how many spaces are expected, such as:
2020

2121
```js
22-
var re = /foo {3}bar/;
22+
const re = /foo {3}bar/;
2323
```
2424

2525
Now it is very clear that three spaces are expected to be matched.
@@ -35,8 +35,8 @@ Examples of **incorrect** code for this rule:
3535
```js
3636
/*eslint no-regex-spaces: "error"*/
3737

38-
var re = /foo bar/;
39-
var re = new RegExp("foo bar");
38+
const re = /foo bar/;
39+
const re1 = new RegExp("foo bar");
4040
```
4141

4242
:::
@@ -48,8 +48,8 @@ Examples of **correct** code for this rule:
4848
```js
4949
/*eslint no-regex-spaces: "error"*/
5050

51-
var re = /foo {3}bar/;
52-
var re = new RegExp("foo {3}bar");
51+
const re = /foo {3}bar/;
52+
const re1 = new RegExp("foo {3}bar");
5353
```
5454

5555
:::

docs/src/rules/no-restricted-globals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ import event from "event-module";
8787
/*global event*/
8888
/*eslint no-restricted-globals: ["error", "event"]*/
8989

90-
var event = 1;
90+
const event = 1;
9191
```
9292

9393
:::

docs/src/rules/no-restricted-modules.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ Examples of **incorrect** code for this rule with sample `"fs", "cluster", "lod
8080
```js
8181
/*eslint no-restricted-modules: ["error", "fs", "cluster"]*/
8282

83-
var fs = require('fs');
84-
var cluster = require('cluster');
83+
const fs = require('fs');
84+
const cluster = require('cluster');
8585
```
8686

8787
:::
@@ -91,7 +91,7 @@ var cluster = require('cluster');
9191
```js
9292
/*eslint no-restricted-modules: ["error", {"paths": ["cluster"] }]*/
9393

94-
var cluster = require('cluster');
94+
const cluster = require('cluster');
9595
```
9696

9797
:::
@@ -101,7 +101,7 @@ var cluster = require('cluster');
101101
```js
102102
/*eslint no-restricted-modules: ["error", { "patterns": ["lodash/*"] }]*/
103103

104-
var pick = require('lodash/pick');
104+
const pick = require('lodash/pick');
105105
```
106106

107107
:::
@@ -113,7 +113,7 @@ Examples of **correct** code for this rule with sample `"fs", "cluster", "lodash
113113
```js
114114
/*eslint no-restricted-modules: ["error", "fs", "cluster"]*/
115115

116-
var crypto = require('crypto');
116+
const crypto = require('crypto');
117117
```
118118

119119
:::
@@ -126,8 +126,8 @@ var crypto = require('crypto');
126126
"patterns": ["lodash/*", "!lodash/pick"]
127127
}]*/
128128

129-
var crypto = require('crypto');
130-
var pick = require('lodash/pick');
129+
const crypto = require('crypto');
130+
const pick = require('lodash/pick');
131131
```
132132

133133
:::

docs/src/rules/no-restricted-syntax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ with (me) {
7171
dontMess();
7272
}
7373

74-
var doSomething = function () {};
74+
const doSomething = function () {};
7575

7676
foo in bar;
7777
```

0 commit comments

Comments
 (0)