-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
75 lines (63 loc) · 2.21 KB
/
app.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
let intentosUsuario = 0;
let numeroRandom = 0;
let numerosSorteados = [];
let numeroMaximo = 10;
function condicionesIniciales() {
document.getElementById('intentar').removeAttribute('disabled');
asignarTextoElemento('h1', 'Juego del numero secreto :)');
asignarTextoElemento('p', 'Selecciona un numero del 1 al 10')
intentosUsuario = 1 ;
numeroRandom = generarNumeroRandom();
}
function desactivarIntentar () {
document.getElementById('intentar').setAttribute('disabled', 'true');
}
function activarNuevoJuego() {
document.getElementById('reiniciar').removeAttribute('disabled');
}
function asignarTextoElemento(elemento, texto) {
let elementoHTML = document.querySelector(elemento);
elementoHTML.innerHTML = texto;
}
function limpiarCampo () {
let valorTF = document.getElementById('usuarioTF');
valorTF.value = '';
}
function generarNumeroRandom() {
let numeroRandom = Math.floor(Math.random() * numeroMaximo) + 1;
if(numerosSorteados.length == numeroMaximo){
asignarTextoElemento('p', 'Se han sorteado todos los numeros');
desactivarIntentar();
}
else if(numerosSorteados.includes(numeroRandom)){
return generarNumeroRandom();
} else {
numerosSorteados.push(numeroRandom);
return numeroRandom;
}
}
function verificarIntento() {
let numeroUsuario = parseInt(document.getElementById('usuarioTF').value);
if(numeroUsuario != numeroRandom){
(numeroUsuario < numeroRandom) ? asignarTextoElemento('p', 'El numero es mayor') : asignarTextoElemento('p', 'El numero es menor');
limpiarCampo();
intentosUsuario++;
} else if(numeroUsuario === numeroRandom) {
asignarTextoElemento('p', `Acertaste el numero en ${intentosUsuario} ${(intentosUsuario === 1) ? 'intento' : 'intentos'}`);
limpiarCampo();
desactivarIntentar();
activarNuevoJuego();
}
if(intentosUsuario > 2){
asignarTextoElemento('p', 'Perdiste :(');
desactivarIntentar();
activarNuevoJuego();
}
return;
}
function reiniciarJuego() {
limpiarCampo();
condicionesIniciales();
document.getElementById('reiniciar').setAttribute('disabled', 'true');
}
condicionesIniciales();