JSFiddle - React, Tailwind, and code Playground

by Harmonix Motion

JavaScript

var num = 99;

while (num <= 1) {
    // check value of num
    // print lyrics using num
    // don't forget to check pluralization on the last line!
    // decrement num
        //console.log(num + " bottles of juice on the wall! " + num + " bottles of juice! Take one down, pass it around " +  num + " bottles of juice on the wall!");
    console.log(num);
    num = num - 1;
    
}