Skip to content

Instantly share code, notes, and snippets.

View arne-witteler's full-sized avatar
🏠
Working from home

Arne Witteler arne-witteler

🏠
Working from home
  • Berlin
  • 09:52 (UTC +01:00)
View GitHub Profile
@bradtraversy
bradtraversy / vsc_js_snippets.json
Last active February 13, 2026 09:02
VSCode JavaScript Snippets
{
"Console Log": {
"prefix": "cl",
"body": "console.log($1);",
"description": "Console Log"
},
"Named Function": {
"prefix": "nfn",
"body": ["function ${1:functionName}($2) {", " $3", "}"],
"description": "Named Function"