<html>
<head>
<meta charset="utf8">
<title>console.table</title>
<script type="text/JavaScript">
<!--
function main() {
var abc = [
{foo: 'one', bar: 'two', baz: 'three' },
{foo: '111', bar: '222', baz: '33333', qux: '444'},
{foo: '*' , bar: '!' , baz: '?' }
];
// Does it even work in FF. Chrome seems OK.
console.table(abc);
}
//-->
</script>
</head>
<body onload='main()'>
</body>
</html>