DEV Community

Discussion on: Unravelling JavaScript Console API

Collapse
 
benwinding profile image
Ben Winding

console.group() is pretty good too πŸ‘Œ

developer.mozilla.org/en-US/docs/W...

Collapse
 
niharrs profile image
Niharika Singh β›“

Yes, the output generated pretty interesting. When do you prefer using console.group() ?

Collapse
 
benwinding profile image
Ben Winding

It let's you nest console logs together, which can be handy for logging in certain components or services. I honestly don't use it much though