I'm picking up the list like this:
listarTodosEstados() {
return this.http.get<any[]>('${this.estadosUrl}');
}
This is my component:
pesquisarEstados() {
this.cidadesService.listarTodosEstados()
.subscribe(dados => {
console.log(this.estados = dados);
});
}
Here's the result:
Please, I would like to know how do I only print the code attribute in the console.log?