<!DOCTYPE html>
<html lang="en">
<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>Jogo Advinha</title>
</head>
<body>
<script>
const sorteia = (number) => {
return Math.round(Math.random() * number);
};
const mostra = (text) => {
document.write(text);
document.write("<br>");
};
var numberLucky = sorteia(10);
var chute = parseInt(prompt("Já pensei. Agore faça seu chute !"));
if (numberLucky == chute) {
mostra("Uau você acertou! O numero pensado foi " + numberLucky);
} else {
mostra("Você errou hahaha! O numero pensado foi " + numberLucky);
if(chute < numberLucky){
mostra("seu chute é menor que o número pensado.")
}else if(chute > numberLucky){
mostra("Seu chute é maior que o número pensado")
}
}
</script>
</body>
</html>