Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html> <body> <h2>Estructura if</h2> <p id="demo"></p> <script> var edad = 18; if(edad < 12) { alert("Todavía eres muy pequeño"); } else if(edad < 19) { alert("Eres un adolescente"); } else if(edad < 35) { alert("Aun sigues siendo joven"); } else { alert("Piensa en cuidarte un poco más"); } document.getElementById("demo").innerHTML = numero3; </script> </body> </html>