ashizawa
2/4/2015 - 5:21 PM

console.table.js

console.table(
  Array.prototype.map.call(document.querySelectorAll('a'), function(item, index) {
    return {
      href: item.href,
      target: item.target
    };
  })
);