All I Want for Christmas: Effective JavaScript — Book Giveaway

console.table() is a good one, too.
It 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]]);
2 Likes

I don’t like the ‘dangling balls’ as Crockford puts it lol

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.