I'm attempting to create my own version of the lyrics for 99 Bottles of Beer
Here is how I've modified the last line:
1 bottle of beer on the wall, 1 bottle of beer.
Take it down and pass it around,
no more bottle of beer on the wall.
How can I include an additional line starting with a capital letter?
No more bottles of beer on the wall, no more bottles of beer.
Head to the store and buy some more, 99 bottles of beer on the wall.
var beer = 99;
while (beer >= 0) {
var words = "bottles";
if (beer === 1) {
words = "bottle";
}
console.log(beer + " " + words + " of beer on the wall, " + beer + " " + words + " of beer. Take one down and pass it around, ");
beer--;
if (beer === 1) {
words = "bottle";
}
if (beer === 0) {
beer = "no more";
}
console.log(beer + " " + words + " of beer on the wall.");
}