<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jogo do Advinha</title>
</head>
<h2>Jogo do advinha com Arrey</h2>
<body>
<input/>
<button>Numeros da mega!</button>
<script>
var segredos = [Math.round( Math.random() * 10),Math.round( Math.random() * 10),Math.round( Math.random() * 10),Math.round( Math.random() * 10)];
var entrada = document.querySelector("input");
entrada.focus();
function verifica () {
for (var posicao = 0; posicao < 4; posicao ++) {
if (entrada.value == segredos[posicao]) {
alert("Você ACERTOU!");
break;
} else {
alert("Você ERROU!");
}
}
entrada.value = "";
entrada.focus();
}
var button = document.querySelector("button");
button.onclick = verifica;
</script>
</body>
</html>