Guest User

Untitled

a guest
Apr 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. chrome devTools BJW
  2.  
  3. - why do debuggers matter?
  4.  
  5. - software engineering is just much about reading and debuggin code as it is about writing code
  6. -faster & cleaner than debugging by loggin
  7. -shorten the feedback loop
  8.  
  9. Debugger Terminology
  10. -breakpoint: stop code execution at a certain line of code
  11. -step: move to the next line of code
  12. -step in: inspect a function that is being called
  13. -step out: go to where this function was called
  14. -step over: move to the next line executed within the current scope
Add Comment
Please, Sign In to add comment