Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
  <body>
    <ul id="counts">
    </ul>
  </body>
  <script>
    var ul = document.getElementById("counts");
    var count = 0;
    setInterval(function() {
      // make a list item <li>123</li>
      var li = document.createElement("li");
      li.appendChild(document.createTextNode(count));
      // append to our list
      ul.appendChild(li);
      // increment counter
      count++;
    }, 1000); // wait one second
  </script>
</html> 
Output

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

Dismiss x
public
Bin info
bhelxpro
0viewers