Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created October 30, 2013 22:29
Show Gist options
  • Save chikoski/7241465 to your computer and use it in GitHub Desktop.
Save chikoski/7241465 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<button id="btn">スタート</button>
<ul id="list"></ul>
</body>
</html>
var generateProgression = function(){
var n = 1;
var list = document.getElementById("list");
while(n < 100){
list.innerHTML += "<li>" + n + "</li>";
n++;
}
};
var btn = document.getElementById("btn");
btn.onclick = function(){
generateProgression();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment