DEV Community

Discussion on: Javascript: 5 cool things you can do with console that aren't console.log

 
catmcgeecode profile image
Cat McGee

Ah I get you! console.group() could help you here - you could group all the ones that you like and ignore the others

Thread Thread
 
neomonst profile image
NeoMonst

Wow, I tried console.group(). Yummy!
I guess I will put a console.group() after my code from now on.
Thanks for the tip!