Skip to content

Instantly share code, notes, and snippets.

@craigmdennis
Last active May 7, 2020 11:59
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 craigmdennis/f243f20614faef50ba45222ae54e96d0 to your computer and use it in GitHub Desktop.
Save craigmdennis/f243f20614faef50ba45222ae54e96d0 to your computer and use it in GitHub Desktop.
Create a comma separated string of the text from a series of nodes using devtools
let comma = ''; for (const cf of document.querySelectorAll('.class a')) { comma += `${cf.innerHTML},` }; console.log(comma);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment