function verify_var_type(variable) {     if (typeof(variabl...

Próximas questões
Com base no mesmo assunto
Q2217490 Programação

function verify_var_type(variable) {

    if (typeof(variable) != ‘string’ {

            return                                        false;

    }

    else {

       return true;

    }

}

Analisando o bloco de código acima, responda. Qual o retorno dessa função?

Alternativas