Created
January 17, 2016 17:31
-
-
Save cdmz/6fb94bd9daceb4a33fff to your computer and use it in GitHub Desktop.
tranformar nodeList em array javascript
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 elements = document.querySelectorAll("p"); // NodeList | |
var arrayElements = [].slice.call(elements); // Array de Nodes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment