99 bottles song

PHOTO EMBED

Sun Apr 23 2023 14:34:19 GMT+0000 (Coordinated Universal Time)

Saved by @AlanaBF #javascript

let numOfBottles = 99
let lyrics = []
function beerSong() {
while (numOfBottles >=0) {
}
console.log(numOfBottles + " bottles of beer on the wall " + numOfBottles + " bottles of beer. Take one down and pass it around, " + numOfBottles + " bottles of beer on the wall.");
    
numOfBottles--;
}
content_copyCOPY