Skip to content

Instantly share code, notes, and snippets.

@chukonu
Created May 25, 2018 07:32
Show Gist options
  • Save chukonu/f250fe3966a040adc062a2cade799110 to your computer and use it in GitHub Desktop.
Save chukonu/f250fe3966a040adc062a2cade799110 to your computer and use it in GitHub Desktop.
Turning an array-like object into an array
// Turn an array-like object into an array
let nodeList = document.querySelectorAll('div') // an array-like object
Array.prototype.slice.call(nodeList)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment