DEV Community

Discussion on: Stop Console.Logging! This is How to Use Chrome to Debug JavaScript

Collapse
 
braxnu profile image
Karol Baczewski

As others said, console.log has some solid advantages over the debugger. The top one is that it gives you insight into code execution without interfering with timeouts and the execution timing in general. These things matter a lot in asynchronous world. Saying "stop using ..." is misleading.