Skip to content

Instantly share code, notes, and snippets.

@why-jay
Last active August 29, 2015 14:12
Show Gist options
  • Save why-jay/b9866acb4847296fcfec to your computer and use it in GitHub Desktop.
Save why-jay/b9866acb4847296fcfec to your computer and use it in GitHub Desktop.
// domElems is an array of DOM elements of length 5
for (var i = 0; i < domElems.length; ++i) {
((j) => {
domElems[j].addEventListener('click', () => {
console.log(j);
});
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment