arrow_back
Back

JavaScript development workflow: tooling and practices

Andrew Dorokhov Andrew Dorokhov schedule 1 min read
menu_book Table of Contents

Debugger keyword

Put the debugger keyword in your script to initiate a debug session.

Google Chrome console

Use the “Sources” tab.

Useful sections:

  • Breakpoints.
  • Scope.
  • Call stack.
  • XHR/fetch Breakpoints.
  • DOM Breakpoints.
  • Global Listeners.
  • Event Listener Breakpoints.

Inspect arrays and objects in the console: expand nested properties with the mouse and explore the structure.

Quick checks in the console only:

1999 * 433 + 123;
'Hello, world!'.length;
code

Need Help with Development?

Happy to help — reach out via the contacts or go straight to my Upwork profile.

work View Upwork Profile arrow_forward
Next Article

HTTP requests in JavaScript: fetch, XMLHttpRequest, and libraries

arrow_forward