Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created October 31, 2012 13:53
Show Gist options
  • Save chikoski/3987143 to your computer and use it in GitHub Desktop.
Save chikoski/3987143 to your computer and use it in GitHub Desktop.
JavaScriptにおけるwhile文の例
var a = 0;
while (a < 10){
a = a + 2;
console.log("a = " + a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment