Created
November 1, 2016 14:13
-
-
Save icodesido/4d455ecb1e33febd13f7ba4b97a0c47d to your computer and use it in GitHub Desktop.
Node List iteration
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
var divs = document.querySelectorAll('div'); | |
Array.prototype.forEach.call(divs, function (i) { | |
var elem = i; | |
console.log(elem.innerHTML); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment