Skip to content

Instantly share code, notes, and snippets.

Created November 11, 2016 20:46
Show Gist options
  • Save anonymous/1f42635814f48f582929b02be970db88 to your computer and use it in GitHub Desktop.
Save anonymous/1f42635814f48f582929b02be970db88 to your computer and use it in GitHub Desktop.
var buttons = document.querySelectorAll('button');
for (let i = 0; i < buttons.length; i++) {
var button = buttons[i];
button.innerText = i + 1;
button.onclick = function () {
console.log(i + 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment