JSFiddle - React, Tailwind, and code Playground
HTML
<h1>JavaScript do ... while</h1>
<p id="demo"></p>
<script>
var text = ""
var i = 0;
do {
text += "<br>The number is " + i;
i++;
}
while (i < 10);
document.getElementById("demo").innerHTML = text;
</script>