Created
August 4, 2013 00:01
-
-
Save ChandraNalaani/6148470 to your computer and use it in GitHub Desktop.
99 Bottles
This file contains 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 i = 99 | |
while (i >= 2) | |
{ | |
document.write(i + ' bottles of beer on the wall, ' + i + ' bottles of beer! If one of those bottles should happen to fall...') | |
document.write('<br>') | |
i-- | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment