-
Notifications
You must be signed in to change notification settings - Fork 0
/
desafio2.html
36 lines (30 loc) · 1.14 KB
/
desafio2.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desafio 2-7 / Variáveis em Javascript</title>
</head>
<body>
#7DaysOfCode <br>
Rafa Ballerini <br>
Instrutora Front-End na Alura <br>
Variáveis em Javascript <br>
<br>
<hr><br>
<script>
const nome = prompt("Qual o seu nome ?")
const idade = prompt("Quantos anos você tem ?")
const linguagem = prompt("Qual linguagem de programação você está estudando ?")
alert('Olá ' + [nome] + ',você tem ' + [idade] + ' anos e já está aprendendo ' + [linguagem] + '!')
const gosta = prompt("Você gosta de estudar " + [linguagem] + "? Responda com o número 1 para SIM ou 2 para NÃO.");
if (gosta == 1) {
alert("Muito bom! Continue estudando e você terá muito sucesso.")
}
if (gosta == 2) {
alert("Ahh que pena... Já tentou aprender outras linguagens?")
}
</script>
</body>
</html>