Skip to content

Instantly share code, notes, and snippets.

@fataelislami
Created March 29, 2017 13:56
Show Gist options
  • Save fataelislami/b2e5bb65a2f82e059c73668b602e3066 to your computer and use it in GitHub Desktop.
Save fataelislami/b2e5bb65a2f82e059c73668b602e3066 to your computer and use it in GitHub Desktop.
<html>
<head></head>
<body>
<script>
var i=0;
do{
document.write("Hello World </br> "+i);
i++;
}
while(i<=10);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment