0
Good evening, I made this program only for tests, I wonder if there is how I add the nota2 as second variable and how it would be checked together with not
function calculaNota(nota1) {
if(isNaN(nota1)) {
console.log('Você digitou ' + nota1 , 'isso não é um numero')
}
else{
if(nota1 > 10){
console.log('Voce digitou ' + nota1 ,'e isso é maior que 10' )
}
else
('Nota registrada com sucesso')
}
}
It worked perfect thanks buddy
– Alecksander Costa