Skip to content

Instantly share code, notes, and snippets.

@why-jay
Last active August 29, 2015 14:12
Show Gist options
  • Save why-jay/67f6f353a9d963b5e80b to your computer and use it in GitHub Desktop.
Save why-jay/67f6f353a9d963b5e80b 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) {
domElems[i].addEventListener('click', () => {
console.log(i);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment