<!DOCTYPE html>
<html lang="es">
<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>licencia</title>
</head>
<body>
<script>
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
nombre = prompt("Indique cual es su nombre");
var edad = parseInt(prompt(nombre + " , ¿Cuál es tu edad?"));
if (edad>= 18) {
var tieneLicencia = prompt(nombre + " , ¿Tienes licencia? Responde S o N");
if (tieneLicencia = "S") {
imprimir(nombre+ ", Puedes conducir");
}
else{
imprimir(nombre+ ", No puedes conducir");
}
} else {
imprimir(nombre+ ", No puedes conducir");
}
</script>
</body>
</html>