Created
October 30, 2013 22:29
-
-
Save chikoski/7241465 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<button id="btn">スタート</button> | |
<ul id="list"></ul> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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