Skip to content

Instantly share code, notes, and snippets.

@MakowskiHubert
Last active May 22, 2023 12:56
Show Gist options
  • Select an option

  • Save MakowskiHubert/c1a54d7aaabf16258f0425ffc775b4da to your computer and use it in GitHub Desktop.

Select an option

Save MakowskiHubert/c1a54d7aaabf16258f0425ffc775b4da to your computer and use it in GitHub Desktop.
base-snippets-vsc
"Print to console": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "clg",
"body": [
"console.log('$1', $1);",
"$2"
],
"description": "Log output to console"
},
"create const function": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "cons",
"body": [
"const handle$1 = () => {",
"$2",
"};"
],
"description": "create const function"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment