<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Validador para saber si puedes conducir</title>
</head>
<body>
<script>
// Function to make a line break
function saltarlinea() {
document.write("<br />");
};
// Function to print
function imprimir(mensaje) {
document.write(mensaje);
saltarlinea();
};
var edad = parseInt(prompt("¿Cuál es tu edad?"));
var tieneLicencia = prompt("¿Tienes licencia? Responde S o N");
// Condition to validate the age and the driver's license
if(edad >= 18) {
if(tieneLicencia.toUpperCase() == "S") {
imprimir("Puede conducir")
}
else {
imprimir("No puede conducir")
};
};
if(edad < 18) {
imprimir("No puede conducir");
};
</script>
</body>
</html>