Skip to content

Instantly share code, notes, and snippets.

@misfist
Created September 10, 2015 15:20
Show Gist options
  • Save misfist/3eba907b44979d7b8b30 to your computer and use it in GitHub Desktop.
Save misfist/3eba907b44979d7b8b30 to your computer and use it in GitHub Desktop.
Create a button for each element in an array
function createButtons(element, index) {
var button = document.createElement("button");
button.id = element;
button.innerHTML = element;
controlpanel.appendChild(button);
}
["Play", "Pause", "Mute"].forEach(createButtons);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment