Last active
June 29, 2020 17:58
-
-
Save ahmadawais/37eb4e26c42cc5cb33511d52080a8910 to your computer and use it in GitHub Desktop.
VSCode Console Log Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Console Log with Name": { | |
"prefix": "lg", | |
"body": ["console.log(`${1:variable}`, ${1:variable});"], | |
"description": "Console Log with name of a variable" | |
}, | |
"Console Log with String": { | |
"prefix": "lgs", | |
"body": ["console.log(`${1:STRING_HERE}`);"], | |
"description": "Console Log string" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Preference: Configure User Snippets
JavaScript
Snippets{
and}