Skip to content

Instantly share code, notes, and snippets.

@ozselgin
Created November 17, 2023 12:40
Show Gist options
  • Save ozselgin/1727be68a06f7a20f1d4032acf2608eb to your computer and use it in GitHub Desktop.
Save ozselgin/1727be68a06f7a20f1d4032acf2608eb to your computer and use it in GitHub Desktop.
reduceQuerySelectorAll
Array.from(document.querySelectorAll("div[data-column=asin] span")).reduce((acc, current) => acc + "," + current.innerText, "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment