This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const nome = prompt("Olá, tudo bem? Para iniciarmos, posso saber seu nome?"); | |
const mensagemNome = alert( | |
"Perfeito, " + nome + ", me permita fazer algumas perguntas..." | |
); | |
const idade = prompt("me diz: " + nome + ", quantos anos você tem?"); | |
const cidade = prompt("Além disso: onde você mora?"); | |
const linguagem = prompt( | |
"Pra encerrar: qual linguagem de programação você estuda?" | |
); | |
const mensagemFinal1 = alert( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title> | |
Imersão Dev - Aula 03 | |
</title> | |
</head> | |
<body> | |
<div class="container"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title> | |
Imersão Dev - Aula 03 | |
</title> | |
</head> | |
<body> | |
<div class="container"> |