um metodo static
static verifica(compa){
let listaOb= [];
ConnectionFactory
.getConnection()
.then(connection =>
new UsuarioDao(connection)
.colocaLista(listaOb))
esta funçao acima coloca os valores no arrey
console.log(listaOb.length)
qundo imprimo o length ele da zero, mas qundo imprimo a lista aparece ela com os valores e com o tamanho certo
console.log(listaOb)
for(let i=0;i<listaOb.length;i++){
console.log("as")
let temp =e.getNomeUsuario().toString();
console.log("temp")
if(compa!= temp){
console.log(temp)
return true
}
}
}