Use console.group for better JavaScript debugging
For debugging JavaScript/jQuery code, the easiest and preferred way is to use console.log() to output a message in web console. But it works fine when you have small amount of logging message. But having large number of logging makes log messy and unreadable. console.group() can be used to group related log messages and use console.groupEnd()to […]