Skip to content

Instantly share code, notes, and snippets.

@Razenbull
Created September 16, 2015 09:31
Show Gist options
  • Save Razenbull/a24cd04edafef2cbc08d to your computer and use it in GitHub Desktop.
Save Razenbull/a24cd04edafef2cbc08d to your computer and use it in GitHub Desktop.
get an array from a collection
var thumbs = document.getElementsByClassName('thumb');
Object.keys(thumbs).map(
function (key) {
return thumbs[key]
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment