Buenas quisiera saber si esta opcion es factible ya que creo que le quita funcionalidad al while
<!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>JUEGO DE ADIVINACION</title>
</head>
<body>
<h1>PROGRAMA DE ADIVINACION</h1>
<hr>
<Script>
function saltarLineas() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
document.write("<hr>")
};
function imprimir(frase) {
document.write(frase)
saltarLineas();
};
var numeroPensado = Math.round(Math.random()*10);
// var contador = 1;
var intentos = 3;
// while (contador <= intentos) {
while (contador <= 3) {
var numeroLanzado = parseInt(prompt("ingrese el numero pesado 0 - 10"));
if (numeroPensado == numeroLanzado) {
alert("Usted acerto en el intento " + contador + " el numero pensado era " + numeroPensado);
} else {
imprimir("Usted erro " + contador + " el numero pensado era " + numeroPensado);
};
contador++;
};
imprimir("FIN");
</Script>
</body>
# </html>