Skip to content

Instantly share code, notes, and snippets.

@deptno
Created December 21, 2017 20:23
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 deptno/f0a44531931b72598d9577f8517f6d62 to your computer and use it in GitHub Desktop.
Save deptno/f0a44531931b72598d9577f8517f6d62 to your computer and use it in GitHub Desktop.
console.table(
Array
.from(document.querySelectorAll('.ty04 tr'))
.map(
tr => Array
.from(tr.querySelectorAll('th,td'))
.map(td => td.textContent)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment