Adivina el número
Buenas les comparto mi solución: Puedes mejorar mi solución ?
<!DOCTYPE html>
<html lang="en">
<head>
<title>javascript-practica</title>
</head>
<body>
<script>
function ingresarNumero(){
let numero = parseInt(prompt("Ingrese un numero 0-10: "));
return numero;
}
function adivinaNumero() {
let n = ingresarNumero();
let numeroAleatorio = Math.round(Math.random()*10);
if (numeroAleatorio == n) {
alert("Felicidades " + numeroAleatorio + " es correcto.");
} else {
alert(n + " no es correcto " + " el numero era: " + numeroAleatorio);
}
}
adivinaNumero();
</script>
</body>
</html>