Skip to content

Instantly share code, notes, and snippets.

@stvnrynlds
Last active August 30, 2017 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stvnrynlds/83f3cbc3b8c3c7bc3c921ef8fb8ae90a to your computer and use it in GitHub Desktop.
Save stvnrynlds/83f3cbc3b8c3c7bc3c921ef8fb8ae90a to your computer and use it in GitHub Desktop.
Fun with array-like objects
function nodeListToArray(nodeList) {
return [].slice.call(nodeList);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment