Skip to content

Instantly share code, notes, and snippets.

View krazy-chetan's full-sized avatar

Chetan Kumar krazy-chetan

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"