Skip to content

Instantly share code, notes, and snippets.

@ChandraNalaani
Created August 4, 2013 00:01
Show Gist options
  • Save ChandraNalaani/6148470 to your computer and use it in GitHub Desktop.
Save ChandraNalaani/6148470 to your computer and use it in GitHub Desktop.
99 Bottles
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