console.table

/**
 * console.table
 * This command logs any supplied data using a tabular layout.
 */

console.table([{a:1, b:2, c:3}, {a:"foo", b:false, c:undefined}]);
console.table([[1,2,3], [2,3,4]]);