Skip to content

Instantly share code, notes, and snippets.

@th507
Created May 27, 2020 03:36
Show Gist options
  • Save th507/7a1dbd1781dc2ccbe87f1cdf18423aa5 to your computer and use it in GitHub Desktop.
Save th507/7a1dbd1781dc2ccbe87f1cdf18423aa5 to your computer and use it in GitHub Desktop.
Output Album Song List on Amazon
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