Created
December 5, 2016 19:41
-
-
Save imkost/9a4190befe5f9563da681bc8042132ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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