Skip to content

Instantly share code, notes, and snippets.

@jonalvarezz
Created February 11, 2015 20:42
Show Gist options
  • Save jonalvarezz/4764fc371bf58fb70de8 to your computer and use it in GitHub Desktop.
Save jonalvarezz/4764fc371bf58fb70de8 to your computer and use it in GitHub Desktop.
Convert a NodeList to Array
// Convert a NodeList to Array
// http://davidwalsh.name/nodelist-array
var nodesArray = [].slice.call(document.querySelectorAll("div"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment