JSFiddle - React, Tailwind, and code Playground

by nate

JavaScript

var foo = 10;

while (foo > 0) {
    console.log(foo);
    foo -= 1;
}