Good night, I'm having trouble making if / else if / else conditions in javascript, in the course of js codecademy works, but when I try to do some algorithms in the sublime using the conditional, it gives the error described in the title. p>
<script>
var note1, note2, media;
note1 = parseFloat(prompt("Informe a primeira nota"));
note2 = parseFloat(prompt("Informe a segunda nota"));
media = (note1 + note2) / 2;
if (media >= 5.0) or (media <= 6.0){
console.log("Você é um mau aluno");
}
else if (media >= 6.1) or (media <= 7.0) {
console.log("Você é um aluno mediano");
}
else {
console.log("Você é um excelente aluno");
}
</script>