-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
65 lines (57 loc) · 1.93 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
let numGenerados = [];
let numeroSecreto = 0;
let numeroIntentos = 0;
let numeroMaximo = 10;
function asignarTextoElemento(elemento, texto){
let elementoHTML = document.querySelector(elemento);
elementoHTML.innerHTML = texto;
return;
}
function verificarIntento(){
let numeroUsuario = parseInt(document.getElementById('valorUsuario').value);
if(numeroSecreto === numeroUsuario) {
asignarTextoElemento('p',`Acertaste el número en ${numeroIntentos} ${numeroIntentos > 1 ? 'veces': 'vez'}`);
document.querySelector('#reiniciar').removeAttribute('disabled');
} else {
//El usuario no acerto
if(numeroSecreto > numeroUsuario){
asignarTextoElemento('p',"El numero es mayor");
} else {
asignarTextoElemento('p',"El numero es menor");
}
numeroIntentos++;
limpiarCaja();
}
return;
}
function condicionesIniciales(){
asignarTextoElemento('h1','Juego del numero secreto');
asignarTextoElemento('p',`Indica un numero del 1 al ${numeroMaximo}`);
numeroSecreto = generarNumeroSecreto();
console.log(numeroSecreto);
console.log(numGenerados);
numeroIntentos = 1;
}
function reiniciarJuego(){
limpiarCaja();
condicionesIniciales();
document.querySelector('#reiniciar').setAttribute('disabled','true');
}
function limpiarCaja(){
document.querySelector('#valorUsuario').value = '';
}
function generarNumeroSecreto(){
let numGenerado = Math.floor(Math.random()*numeroMaximo) + 1;
if(numGenerados.length == numeroMaximo){
asignarTextoElemento('p',"Ya se sortearon todos los numeros posibles");
return;
} else {
if(numGenerados.includes(numGenerado)){
return generarNumeroSecreto();
} else {
numGenerados.push(numGenerado);
return numGenerado;
}
}
}
condicionesIniciales();