Skip to content

Instantly share code, notes, and snippets.

@luckyduck
Last active August 29, 2015 13:56
Show Gist options
  • Save luckyduck/9140379 to your computer and use it in GitHub Desktop.
Save luckyduck/9140379 to your computer and use it in GitHub Desktop.
while-Schleife
var i = 1;
while (i <= 5) {
document.write(i);
i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment