Group output in JavaScript Console 29-12-2015 16:30:53 JAVASCRIPT / Debugging 0 Bookmark(s) 183 View(s) If you write many log messages in JavaScript, you can group them in the console to a indented collapsible group. function doit() { console.group("Updates"); $('button').each(function(){ console.log("Updating button..."); }); console.endGroup(); }