Problem
Debugging arrays of objects with console.log() makes data hard to read and compare.
Solution
Use console.table() to display arrays and objects in a formatted table.
Benefit
Makes debugging 10x faster with clear, sortable table visualization.
Code Example
const users = [
{id: 1, name: 'John', age: 30},
{id: 2, name: 'Jane', age: 25}
];
// Display as table
console.table(users);