Skip to content

Instantly share code, notes, and snippets.

@kiwicopple
Last active October 16, 2018 03:22
Show Gist options
  • Save kiwicopple/f758c2947b6fff37d0e752e72f95c114 to your computer and use it in GitHub Desktop.
Save kiwicopple/f758c2947b6fff37d0e752e72f95c114 to your computer and use it in GitHub Desktop.
VS Code snippets
{
"Print to console": {
"prefix": "l",
"body": [
"console.log('${1:variable}', ${1:variable})"
],
"description": "Log output to console"
},
"Create JS comment (long)": {
"prefix": "///",
"body": [
"/**",
" * ${1:variable}",
" */"
],
"description": "Create JS comment (long)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment