@@ -7,7 +7,7 @@ rule_type: suggestion
7
7
The ` new ` operator in JavaScript creates a new instance of a particular type of object. That type of object is represented by a constructor function. Since constructor functions are just regular functions, the only defining characteristic is that ` new ` is being used as part of the call. Native JavaScript functions begin with an uppercase letter to distinguish those functions that are to be used as constructors from functions that are not. Many style guides recommend following this pattern to more easily determine which functions are to be used as constructors.
8
8
9
9
``` js
10
- var friend = new Person ();
10
+ const friend = new Person ();
11
11
```
12
12
13
13
## Rule Details
@@ -64,7 +64,7 @@ Examples of **incorrect** code for this rule with the default `{ "newIsCap": tru
64
64
``` js
65
65
/* eslint new-cap: ["error", { "newIsCap": true }]*/
66
66
67
- var friend = new person ();
67
+ const friend = new person ();
68
68
```
69
69
70
70
:::
@@ -76,7 +76,7 @@ Examples of **correct** code for this rule with the default `{ "newIsCap": true
76
76
``` js
77
77
/* eslint new-cap: ["error", { "newIsCap": true }]*/
78
78
79
- var friend = new Person ();
79
+ const friend = new Person ();
80
80
```
81
81
82
82
:::
@@ -88,7 +88,7 @@ Examples of **correct** code for this rule with the `{ "newIsCap": false }` opti
88
88
``` js
89
89
/* eslint new-cap: ["error", { "newIsCap": false }]*/
90
90
91
- var friend = new person ();
91
+ const friend = new person ();
92
92
```
93
93
94
94
:::
@@ -102,7 +102,7 @@ Examples of **incorrect** code for this rule with the default `{ "capIsNew": tru
102
102
``` js
103
103
/* eslint new-cap: ["error", { "capIsNew": true }]*/
104
104
105
- var colleague = Person ();
105
+ const colleague = Person ();
106
106
```
107
107
108
108
:::
@@ -114,7 +114,7 @@ Examples of **correct** code for this rule with the default `{ "capIsNew": true
114
114
``` js
115
115
/* eslint new-cap: ["error", { "capIsNew": true }]*/
116
116
117
- var colleague = new Person ();
117
+ const colleague = new Person ();
118
118
```
119
119
120
120
:::
@@ -126,7 +126,7 @@ Examples of **correct** code for this rule with the `{ "capIsNew": false }` opti
126
126
``` js
127
127
/* eslint new-cap: ["error", { "capIsNew": false }]*/
128
128
129
- var colleague = Person ();
129
+ const colleague = Person ();
130
130
```
131
131
132
132
:::
@@ -140,9 +140,9 @@ Examples of additional **correct** code for this rule with the `{ "newIsCapExcep
140
140
``` js
141
141
/* eslint new-cap: ["error", { "newIsCapExceptions": ["events"] }]*/
142
142
143
- var events = require (' events' );
143
+ const events = require (' events' );
144
144
145
- var emitter = new events ();
145
+ const emitter = new events ();
146
146
```
147
147
148
148
:::
@@ -156,9 +156,9 @@ Examples of additional **correct** code for this rule with the `{ "newIsCapExcep
156
156
``` js
157
157
/* eslint new-cap: ["error", { "newIsCapExceptionPattern": "^person\\.." }]*/
158
158
159
- var friend = new person.acquaintance ();
159
+ const friend = new person.acquaintance ();
160
160
161
- var bestFriend = new person.friend ();
161
+ const bestFriend = new person.friend ();
162
162
```
163
163
164
164
:::
@@ -170,7 +170,7 @@ Examples of additional **correct** code for this rule with the `{ "newIsCapExcep
170
170
``` js
171
171
/* eslint new-cap: ["error", { "newIsCapExceptionPattern": "\\.bar$" }]*/
172
172
173
- var friend = new person.bar ();
173
+ const friend = new person.bar ();
174
174
```
175
175
176
176
:::
@@ -200,8 +200,8 @@ Examples of additional **correct** code for this rule with the `{ "capIsNewExcep
200
200
``` js
201
201
/* eslint new-cap: ["error", { "capIsNewExceptionPattern": "^person\\.." }]*/
202
202
203
- var friend = person .Acquaintance ();
204
- var bestFriend = person .Friend ();
203
+ const friend = person .Acquaintance ();
204
+ const bestFriend = person .Friend ();
205
205
```
206
206
207
207
:::
@@ -225,11 +225,11 @@ Examples of additional **correct** code for this rule with the `{ "capIsNewExcep
225
225
``` js
226
226
/* eslint new-cap: ["error", { "capIsNewExceptionPattern": "^Foo" }]*/
227
227
228
- var x = Foo (42 );
228
+ const x = Foo (42 );
229
229
230
- var y = Foobar (42 );
230
+ const y = Foobar (42 );
231
231
232
- var z = Foo .Bar (42 );
232
+ const z = Foo .Bar (42 );
233
233
```
234
234
235
235
:::
@@ -243,7 +243,7 @@ Examples of **incorrect** code for this rule with the default `{ "properties": t
243
243
``` js
244
244
/* eslint new-cap: ["error", { "properties": true }]*/
245
245
246
- var friend = new person.acquaintance ();
246
+ const friend = new person.acquaintance ();
247
247
```
248
248
249
249
:::
@@ -255,7 +255,7 @@ Examples of **correct** code for this rule with the default `{ "properties": tru
255
255
``` js
256
256
/* eslint new-cap: ["error", { "properties": true }]*/
257
257
258
- var friend = new person.Acquaintance ();
258
+ const friend = new person.Acquaintance ();
259
259
```
260
260
261
261
:::
@@ -267,7 +267,7 @@ Examples of **correct** code for this rule with the `{ "properties": false }` op
267
267
``` js
268
268
/* eslint new-cap: ["error", { "properties": false }]*/
269
269
270
- var friend = new person.acquaintance ();
270
+ const friend = new person.acquaintance ();
271
271
```
272
272
273
273
:::
0 commit comments