Skip to content

Instantly share code, notes, and snippets.

@hemanth
Created November 23, 2012 10:20
Show Gist options
  • Save hemanth/4134912 to your computer and use it in GitHub Desktop.
Save hemanth/4134912 to your computer and use it in GitHub Desktop.
arrayfrom vs [].foreach
var divs = document.querySelectorAll('div');
Array.from(divs).forEach(function (node) {
console.log(node);
});
var divs = document.querySelectorAll('div');
[].forEach.call(divs, function (node) {
console.log(node);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment