You will spend thousands of hours in DevTools. These ten tricks repay learning them immediately.
The list
- $0 in Console = currently selected element.
$0.style.color = "red" - console.table(arrayOfObjects) โ readable data instead of expandable mush
- Cmd/Ctrl+Shift+P โ command palette: type "screenshot" for full-page capture, "coverage" for unused CSS
- Network โ throttling โ feel your site on Slow 4G like your real users do
- Elements โ :hov โ force :hover/:focus states to debug them calmly
- Right-click element โ Break on โ subtree modifications โ find WHAT JS changes this DOM node
- Console $$('.card') โ querySelectorAll shorthand, returns a real array
- Sources โ right-click a line โ conditional breakpoint โ break only when
i > 500 - copy(object) โ any console value straight to clipboard as JSON
- Lighthouse tab โ performance/SEO/accessibility audit with concrete fixes
Practice on this very page โ open DevTools and inspect how the design system variables work.
โ All Articles