1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Update pretty-print-tabular-data.md

This commit is contained in:
Oxicode
2017-02-01 17:15:21 -05:00
committed by GitHub
parent c58d374c4f
commit 7b60f60f7f

View File

@@ -7,3 +7,7 @@ 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}])
```