JSFiddle - React, Tailwind, and code Playground
by kasperfish
JavaScript
function printStars(){
var n = prompt("Insert number of stars:","0..");
var stars='';
for (i = 0; i < n; i++){
stars+='*';
}
$('body').html(stars)
//document.write(stars);
}
//call the function
printStars();