Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.46 KB

README.md

File metadata and controls

35 lines (26 loc) · 1.46 KB

JavaScript

Tutorials
Snippets
Debugging
Web APIs

Tutorials

  • javascript.info
    "How it's done now. From the basics to advanced topics with simple, but detailed explanations."
    Best ressource for JavaScript related topics I encountered.

Debugging

  • Mastering The Developer Tools Console
    Explanation of useful console API methods, like console.profile() for CPU profiling.
  • Find the triggered event listener
    Image you press a key, something happens on the website and you want to know
    where an event listener got triggered. You can set a breakpoint for a specific
    type of event listener (keyboard, mouse, ...) in the Chrome DevTools under
    source -> right sidebar -> event listener breakpoints

Snippets

Web APIs