<html lang="en">
<meta charset="UTF-8">
<h1>Puede o no conducir</h1>
</html>
<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) {
if(tieneLicencia == "S") {
imprimir("Puede Conducir");
}
}
if (edad >= 18) {
if(tieneLicencia == "N") {
imprimir("No Puede Conducir");
}
}
if(edad < 18) {
imprimir("No Puede Conducir");
}
</script>``