JSFiddle - React, Tailwind, and code Playground
JavaScript
var reps = 7;
var i = reps + 1;
var total = 0;
while(i--){
total = total + i;
}
alert(total);
var reps = 7;
var i = reps + 1;
var total = 0;
while(i--){
total = total + i;
}
alert(total);