Fiz e alterei para dar alerta quando erra ,avisando a quantidade de chances restantes.
<meta charset="UTF-8">
<script>
function pulalinha()
{
document.write("<br><hr><br>");
}
function mostra(frase)
{
document.write("<big>"+frase+"</big>");
pulalinha();
}
function titulo(frase)
{
document.write("<h1>"+frase+"</h1>");
}
function sorteia(n)
{
return Math.round(Math.random() * n);
}
var numeroPensado = sorteia(10);
var tentativas =1
var chances = 3
titulo ("Adivinhe o numero que pensei!!")
while (tentativas <=chances)
{
var chute = parseInt(prompt("Já pensei. Qual você acha que é?"));
if(chute == numeroPensado)
{
mostra("Uau! Você acertou, pois eu pensei no " + numeroPensado);
break;
}
else {
if (tentativas <chances)
{
alert("Você errou Tente Novamente, voce tem mais " +(chances -tentativas )+ " tentativas")
}
else
{
mostra("Você errou!")
}
}
tentativas++
}
</script>