Stop using console log and start debugging like a pro #webdevelopment #programming #javascript

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

noob: console.log
junior: debugger and breakpoints
senior: logpoints && conditional breakpoints
master: console.log

Logpoints and conditional breakpoints will slow down the execution as they don't JIT which means you can't debug complex race conditions or severe recursion events, console.log, debug, etc... works just fine, when nothing works, console.log does.

egonzalez
Автор

why waste time for debugger, just log it. it's pain using debugger in react/ any framework

ninadlohar