<meta charset="utf-8">
<script>
function pl() {
document.write("<br>");
}
function escreva(escreva){
document.write(escreva);
pl();
}
var numeroPensado = Math.round (Math.random()* 10);
console.log(numeroPensado);
var tentativas = 1;
while (tentativas <= 3){
var chute = parseInt(prompt("digite seu chute "));
if (chute == numeroPensado) {
escreva("Você acertou!!");
break;
} else {
escreva ("você errou :'(");
}
tentativas++;
}
</script>