We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cab5103 commit f08e400Copy full SHA for f08e400
README.md
@@ -145,22 +145,6 @@
145
var name = 'Bob Parr';
146
```
147
148
- - Use double quotes `""` for strings that contain interpolated values
149
-
150
- ```javascript
151
- // bad
152
- var fullName = "Bob" + this.lastName;
153
154
- // good
155
- var fullName = 'Bob' + this.lastName;
156
157
158
- var fullName = 'Bob #{lastName}';
159
160
161
- var fullName = "Bob #{lastName}";
162
- ```
163
164
- String longer than 80 characters should be written across Multiple lines using string concatenation.
165
166
```javascript
0 commit comments