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-useless-concat.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,13 @@ rule_type: suggestion
7
7
It's unnecessary to concatenate two strings together, such as:
8
8
9
9
```js
10
-
var foo ="a"+"b";
10
+
constfoo="a"+"b";
11
11
```
12
12
13
13
This code is likely the result of refactoring where a variable was removed from the concatenation (such as `"a" + b + "b"`). In such a case, the concatenation isn't important and the code can be rewritten as:
14
14
15
15
```js
16
-
var foo ="ab";
16
+
constfoo="ab";
17
17
```
18
18
19
19
## Rule Details
@@ -27,13 +27,13 @@ Examples of **incorrect** code for this rule:
27
27
```js
28
28
/*eslint no-useless-concat: "error"*/
29
29
30
-
var a =`some`+`string`;
30
+
consta=`some`+`string`;
31
31
32
32
// these are the same as "10"
33
-
var a='1'+'0';
34
-
var a='1'+`0`;
35
-
var a=`1`+'0';
36
-
var a=`1`+`0`;
33
+
constb='1'+'0';
34
+
constc='1'+`0`;
35
+
constd=`1`+'0';
36
+
conste=`1`+`0`;
37
37
```
38
38
39
39
:::
@@ -46,12 +46,12 @@ Examples of **correct** code for this rule:
0 commit comments