Hola!!! Cuando voy a consola no me visualiza el console.log
<meta charset="UTF-8">
<input/>
<button> Verificar si acerto con el secreto </button>
<script>
function aleatorio () {
return Math.round(Math.random()*10);
}
function sortearNumeros(cantidad){
var secreto = [];
var contador = 1;
while(contador<= cantidad){
var numeroAleatorio = aleatorio();
var encontrado = false;
if(numeroAleatorio !=0){
for(var posicion = 0 ; posicion < secreto.length; posicion++);{
if (numeroAleatorio == secreto[posicion]) {
encontrado= true;
break;
}
}
if (encontrado == false){
secreto.push(numeroAleatorio);
contador ++;
}
}
}
secreto.push(numeroAleatorio);
}
return secreto;
var secreto = sortearNumeros(4);
console.log(secreto)
var input = document.querySelector("input");
input.focus();
function verificar(){
var encontrado = false ;
for(var posicion = 0;posicion < secreto.length; posicion ++ ){
if (parseInt(input.value)== secreto[posicion]){
alert("Usted acerto");
encontrado = true;
break;
}
}
if(encontrado==false){
alert("USted erro!!");
}
input.value = "";
input.focus();
}
var button = document.querySelector("button");
button.onclick= verificar;
</script>