ASI LO HICE:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
function sorteo(n) {
var numero = Math.round(Math.random() * n);
imprimir(numero);// SE DEJO VISIBLE PARA PODER TESTEAR MAS RAPIDO.
return numero;
}
var intentos=3;
var contador=1;
var numeroPensado = sorteo(parseInt(prompt("Ingrese un numero limite para el sorteo")));
while(contador<=intentos){
var numeroLanzado = parseInt(prompt("Ingrese un número entre 0-10"));
if( numeroLanzado == numeroPensado) {
alert("FELICITACIONES ADIVINASTE EN EL INTENTO "+contador);
break;
} else {
alert("Numero errado. Favor intente de nuevo. Te quedan: "+(intentos-contador)+" intentos.");
if(contador==intentos){
alert("Agoto todos los intentos. Sera en otra ocasion.");
}
}
contador++;
}
document.write("<H4>FIN</H4>");
</script>
</body>
</html>