Console `table()` for Data Visualization
Console Mastery • workflow
What It Does
Render arrays of objects as a clean, sortable table instead of a nested tree.
Quick Summary
Pass an array to the `console.table()` function.
Step-by-Step Instructions
- 1
In the Console, type `console.table(myArrayOfObjects)`.
- 2
A beautiful spreadsheet-style table will appear with sortable columns.
- 3
You can even filter which columns to show: `console.table(users, ['name', 'email'])`.
