2 Quick Tips when working with JS console output
Originally published on Dev.
Here are 2 quick tips you can use when working with the output from JS console:
1) Displaying data
If you are displaying arrays or objects, use console.table rather than console.log:
// try running this:
console.table([
...
tawn33y.hashnode.dev1 min read