Created
February 4, 2015 17:21
-
-
Save ashizawa/5d3f16c792bf74cab2e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.table( | |
| Array.prototype.map.call(document.querySelectorAll('a'), function(item, index) { | |
| return { | |
| href: item.href, | |
| target: item.target | |
| }; | |
| }) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment