Skip to content

Instantly share code, notes, and snippets.

@malipetek
Created August 5, 2018 17:54
Show Gist options
  • Save malipetek/4a52a0879e1467ed487426c42946baf3 to your computer and use it in GitHub Desktop.
Save malipetek/4a52a0879e1467ed487426c42946baf3 to your computer and use it in GitHub Desktop.
// just give me a array
function arrayify(htmlcollection){
var arr = [];
for(var i=0; i<htmlcollection.length; i++){
arr.push(htmlcollection[i]);
}
return arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment