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 ca0f5ffCopy full SHA for ca0f5ff
README.md
@@ -135,7 +135,7 @@
135
136
## <a name='strings'>Strings</a>
137
138
- - Use single quotes `''` for plain strings
+ - Use single quotes `''` for strings
139
140
```javascript
141
// bad
@@ -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
0 commit comments