function verify_var_type(variable) { if (typeof(variabl...
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?
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?