DEV Community

Discussion on: Like `console.log` But Better

Collapse
 
kosovych profile image
Yaroslav Kosovych

Dont forget about console.time() and console.timeEnd() for performance tracking. console.trace to log track trace and many others cool features :)

Collapse
 
markohologram profile image
Marko A

console.trace was just the one I wanted to mention. Whenever I jut want to trace call stack to just see the flow of function calls better.