Skip to content

Instantly share code, notes, and snippets.

@oncet
Last active May 23, 2020 00:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oncet/5503c107203b32610f88d5b9682ef17a to your computer and use it in GitHub Desktop.
Save oncet/5503c107203b32610f88d5b9682ef17a to your computer and use it in GitHub Desktop.
VS Code JS snippets
{
"Print to console": {
"prefix": "ll",
"body": [
"console.log('${1:name}', ${1:name});"
],
"description": "Log output to console"
},
"() => {}": {
"prefix": "arf",
"body": [
"($1) => {$2}"
],
"description": "Arrow function"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment