JSFiddle - React, Tailwind, and code Playground
by eget teteete
HTML
<h1>Считаем до 10</h1>
<p id="theCount"></p>
JavaScript
function ten(){
var c = 0;
while (c < 10){
c++;
document.getElementById('theCount').innerHTML +=c + '<br>';
}
}