Debug anything: The basics In the coming weeks, we'll look at how to debug your JavaScript and TypeScript code, the professional way. Instead of sprinkling `console.log` all around, we'll learn how to use the debugger built into Visual Studio Code. A debugger allows you to open up your program while it runs, look at the state, variables, pause and observe the data flow step by step. You can even r
