Created
January 15, 2021 03:04
-
-
Save benschac/73e109d3827d1d2760d6ac76e25913d1 to your computer and use it in GitHub Desktop.
This file contains 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
var fans = document.querySelectorAll("a"); | |
var fans = [...fans]; | |
var [junk, ...rest] = fans; | |
var csv = rest | |
.map((fan) => { | |
return `${fan.href}, ${fan.textContent}\n`; | |
}) | |
.join(","); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment