Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@anova
Created December 3, 2020 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anova/fded8ba535d7a77d0e804a6f552aa068 to your computer and use it in GitHub Desktop.
Save anova/fded8ba535d7a77d0e804a6f552aa068 to your computer and use it in GitHub Desktop.
Extract table text into nested arrays.
[...document.querySelector('table').querySelectorAll('tr')].map(tr => [...tr.querySelectorAll('td')].map(td => td.innerText))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment