Skip to content

Instantly share code, notes, and snippets.

@imkost
Created December 5, 2016 19:41
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 imkost/9a4190befe5f9563da681bc8042132ec to your computer and use it in GitHub Desktop.
Save imkost/9a4190befe5f9563da681bc8042132ec to your computer and use it in GitHub Desktop.
const Box = () => '<div class="box"></div>';
const boxes = document.getElementsByClassName('box');
document.body.innerHTML = `${Box()}${Box()}${Box()}`;
console.log(boxes.length); // 3
document.body.innerHTML = `${Box()}`;
console.log(boxes.length); // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment