Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 291 Bytes

debugger.md

File metadata and controls

10 lines (8 loc) · 291 Bytes

Debugging

Some vocab:

  1. Debugger: allow you watch what your code is doing/observe what is happening
  2. Breakpoints: A point at which you stop your code;
  3. Watches: Variables or expressions you want to observe
  4. Step over:
  5. step into:

VS Code Debugger