JSFiddle - React, Tailwind, and code Playground
by Pris Wiz
JavaScript
var total = 0, count = 1;
while (count <= 10) {
total += count;
count += 1;
}
print(total);
by Pris Wiz
var total = 0, count = 1;
while (count <= 10) {
total += count;
count += 1;
}
print(total);