<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>¿Puedes conducir?</title>
</head>
<body>
</body>
</html>
<h1>¿Puedes conducir un auto?</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) {
if(tieneLicencia == "S") {
imprimir("Puedes conducir");
}
else {
imprimir("No puedes conducir");
}
}
else {
imprimir("No puedes conducir");
}
</script>