JSFiddle - React, Tailwind, and code Playground
by Alex Azuero
JavaScript
var count= [];
var getToDaChoppa = function(){
// Write your do/while loop here!
console.log(count)
do {count++}
while (count<20){
console.log(count);
count++
console.log(count)
}
};
getToDaChoppa();