let idade = 18;
let sexo = "masculino";
if(idade >= 18){
if(sexo === "masculino"){
console.log("Alistado no Serviço Militar");
}else{
console.log("Isento do Serviço Militar");
}
}else{
console.log("Ainda não tem idade para o SM");
}
To embed this project on your website, copy the following code and paste it into your website's HTML: