*Las mayúsculas o minúsculas juegan un papel importante. Respondía con "s" minúscula me salía no puede conducir. *
<!DOCTYPE html>
<html>
<head>
<title>Edad y Licencia de Conducir</title>
<meta charset="UTF-8">
</head>
<body>
<h1>Programa que calcula si puedo conducir</h1>
<script>
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
var edad = parseInt(prompt("¿Cuál es tu edad?"));
var tieneLicencia = prompt("¿Tienes licencia? Responde S o N");
if ((edad >=18) && (tieneLicencia=="S")) {
imprimir("Puedes conducir");
}
else{
imprimir("No puede conducir");
}
</script>
</body>
</html>