-
Notifications
You must be signed in to change notification settings - Fork 0
/
08_jogo_adivinha.html
46 lines (35 loc) · 1.02 KB
/
08_jogo_adivinha.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jogo Adivinha</title>
</head>
<body>
<h3>Faça uma tentativa de 0 a 5.</h1>
<br>
<input/>
<button>Compare com o meu segredo!</button>
<script>
// // Números gerados randomicamente
// var segredo = Math.round(Math.random() * 5);
// console.log(segredo);
// Números que estão dentro de um array
var segredo = [16, 34, 37, 42, 50, 58];
console.log(segredo);
// Completar exercícios da aula 09/01
var input = document.querySelector("input");
input.focus();
function verifica() {
if (segredo == input.value) {
alert("Parabéns! Você acertou o número secreto");
} else {
alert("Infelizmente você errou!");
}
input.value = "";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verifica;
</script>
</body>
</html>