With this function my program works, but when I add another condition of the error:
if ((nota >= 6) && (frequencia >= 75)){
alert("Aprovado");
}
else if (frequencia >= 50){
alert("Recuperação");
}
else{
alert("Reprovado");
}
I want to add one more condition to this error:
if ((nota >= 6) && (frequencia >= 75)) {
alert("Aprovado");
}
else if (frequencia >= 50) {
alert("Recuperação");
}
else {
alert("Reprovado");
}
//essa
else if (nota >= 4) {
alert("Aluno de Recuperação");
} else {
alert("Aluno Reprovado");
}
}