We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c142ea commit fc8b56aCopy full SHA for fc8b56a
1 file changed
extensions/javascript/snippets/javascript.code-snippets
@@ -173,24 +173,21 @@
173
"Log to the console": {
174
"prefix": "log",
175
"body": [
176
- "console.log($1);",
177
- "$0"
+ "console.log($1);"
178
],
179
"description": "Log to the console"
180
},
181
"Log warning to console": {
182
"prefix": "warn",
183
184
"console.warn($1);",
185
186
187
"description": "Log warning to the console"
188
189
"Log error to console": {
190
"prefix": "error",
191
192
"console.error($1);",
193
194
195
"description": "Log error to the console"
196
}
0 commit comments