1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00
Files
til/chrome/pretty-print-tabular-data.md
2017-02-01 17:15:21 -05:00

14 lines
472 B
Markdown

# Pretty Print Tabular Data
Looking at a bunch of data in the Chrome dev tools console isn't great. It
can be a bit difficult to read because of the way it is displayed.
Fortunately, the Chrome dev tools come with a handy way of displaying
tabular data, `console.table()`. If you give `console.table` an array of
objects or array of arrays, it will format it in a table like so:
![](http://i.imgur.com/LPgBpRB.png)
```js
console.table([{one: 1, two: 2, three: 3}])
```