Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Closure Quiz">
  <meta charset="utf-8">
  <title>Button Test</title>
</head>
<body>
  <button>One</button>
  <button>Two</button>
  <button>Three</button>
  <button>Four</button>
  
</body>
</html>
 
"use strict";
var buttons = document.getElementsByTagName("button");
for(var i=0; i<buttons.length; i++) {
  buttons[i].onclick = function() {
    alert("button "+i);
  }
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
gleicherpro
0viewers