How to check two variables

Asked

Viewed 30 times

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')
    }
}

1 answer

0


Buddy, it can be done this way:

function calculaNota(nota1,nota2) {
            
    if(isNaN(nota1) || isNaN(nota2)) {
        isNaN(nota1) ? console.log('Você digitou ' + nota1 + ' isso não é um numero') : console.log('Você digitou ' + nota2 + ' isso não é um numero');

    }
    else{
        if((nota1 > 10) || (nota2>0)){
            nota1 > 10 ? console.log('Voce digitou ' + nota1 ,'e isso é maior que 10' ) : console.log('Voce digitou ' + nota2 + ' e isso é maior que 10' );
        }else{
            ('Nota registrada com sucesso')
        }
    }
}
calculaNota(1,14);

Browser other questions tagged

You are not signed in. Login or sign up in order to post.