Skip to content

Instantly share code, notes, and snippets.

@davidmyersdev
Created August 24, 2020 03:09
Show Gist options
  • Save davidmyersdev/e0dcc9f754b44bdaf068bafa2d251cdb to your computer and use it in GitHub Desktop.
Save davidmyersdev/e0dcc9f754b44bdaf068bafa2d251cdb to your computer and use it in GitHub Desktop.
function doTheThing(element) {
let children = Array.from(element.childNodes);
if (children.length) {
children.forEach(child => doTheThing(child));
} else {
element.textContent = 'hi';
}
}
doTheThing(document.body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment