-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
33 lines (26 loc) · 1.04 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const numeroEntrada = document.getElementById("numeroEntrada");
const mensaje = document.getElementById("mensaje");
const intento = document.getElementById("intento");
let numeroAleatorio = Math.floor(Math.random() * 100) + 1;
let intentosRealizados = 0;
function resultado() {
const numeroIngresado = parseInt(numeroEntrada.value);
intentosRealizados++;
intento.textContent = intentosRealizados;
if (numeroIngresado == numeroAleatorio) {
mensaje.textContent = `¡Felicidades! Adivinaste el número en ${intentosRealizados} intentos.`;
mensaje.style.color = 'green';
} else if (numeroIngresado < numeroAleatorio) {
mensaje.textContent = "Pista: El número es mayor. Intenta de nuevo.";
mensaje.style.color = 'red';
} else {
mensaje.textContent = "Pista: El número es menor. Intenta de nuevo.";
mensaje.style.color = 'yellow';
}
numeroEntrada.value = ''
}
numeroEntrada.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
resultado();
}
});