Skip to content

Instantly share code, notes, and snippets.

@ioncodes
Created February 16, 2017 09:06
Show Gist options
  • Save ioncodes/e474d175e1143ae0f592a83440ec814d to your computer and use it in GitHub Desktop.
Save ioncodes/e474d175e1143ae0f592a83440ec814d to your computer and use it in GitHub Desktop.
var devIcons = document.getElementsByClassName('devicons');
var icons = [];
for(var i = 0; i < devIcons.length; i++) {
if(i%5 === 0) {
icons.push(devIcons[i].className.split(' ').pop());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment