Useful snippets

    log variable with key

    VS Code snippet

      "Print variable to console": {
        "scope": "javascript,typescript",
        "prefix": "logvar",
        "body": "console.log('$1', $1)"
      }