Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Solucionado (ver solución)
Solucionado
(ver solución)
1
respuesta

Campo de Texto y Botón

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Juego Secreto</title>
    <style>
        body{
            background-color: LightSteelBlue;
        }
    </style>
</head>
<body>

<input/>
<button>¿Es este tú número?</button>

    <script>

        // variables ------------------------------>
            var secreto = Math.round(Math.random() * 10);
            var input = document.querySelector("input");


        // funciones ------------------------------>    
            function verificar() {
                if (secreto == parseInt(input.value)) {
                alert("¡Muy bien!");
            } 
            else {
                alert("No, no es eso...");
                }
            }


        // programa ------------------------------->
        var button = document.querySelector("button");
        button.onclick = verificar;

    </script>
</body>
</html>
1 respuesta
solución!

Hola Roberto

Gracias por compartir tu código, está muy bien felicitaciones.

Si tienes alguna pregunta sobre el contenido de los cursos, estaremos aquí para ayudarte.

Si este post te ayudó, por favor, marca como solucionado ✓. Continúa con tus estudios