Created
May 27, 2020 03:36
-
-
Save th507/7a1dbd1781dc2ccbe87f1cdf18423aa5 to your computer and use it in GitHub Desktop.
Output Album Song List on Amazon
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.log( | |
(x => $$('div.a-section a.TitleLink') | |
.map(y => y.innerText) | |
.filter((name, bool) => (bool = (x !== name), x = name, bool)) | |
.reduce((result, name, i) => `${result}${i + 1}. ${name} | |
`, "\n") | |
)() | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment