Codigo:
<!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>Puede conducir</title> </head> <body> <script> //----- Funciones ----- //Funcion sin parametro function saltarLinea(){ document.write("<br>"); } //Funcion con parametro function print(texto){ saltarLinea(); document.write(texto); } function calcularIMC(weight, height){ return imc = weight/(height)^2 } </script> <script> var edad = parseInt(prompt("¿Cuál es tu edad?")); var tieneLicencia = prompt("¿Tienes licencia? Responde S o N"); if ((edad >= 18) && (tieneLicencia = "S") && (tieneLicencia = "s")) { alert("Puedes conducir"); } else { alert("No puedes conducir") } </script> </body> </html>