160 shaares
1 résultat
taggé
js
Group together console logs
In Javascript you can group together console logs by using console.group()
This will output all of the following console logs in a nicer indented form.
console.group("Food");
console.log("Apple");
console.log("Banana");
console.log("Cookie");
JavaScript
image
You can nest groups inside of one another. To end a group just call console.groupEnd()