<meta charset="UTF-8">
<h1>¿Puedes conducir?</h1>
<script>
function saltarLinea() {
document.write("<br>")
document.write("<br>")
}
function mostrar(frase) {
document.write(frase)
saltarLinea()
}
var edad = parseInt(prompt("¿Cuál es tu edad?"));
var licencia = prompt("¿Tienes licencia? (S/N)");
if ((edad >= 18) && licencia.toLowerCase() == "s") {
mostrar("Puedes conducir")
}
else {
mostrar("NO. No puedes conducir.");
}
</script>