My question is, how can I make an array that has 3 objects to become a single object? As the print below, the matrix is bringing me 3 objects, however I need to assemble a single object with the value of each array, I already researched something like reduce, but could not succeed. Here is my code:
//"ITEMS" é um FirebaseListObservable que transformo em um array
//javascript
//dadosPontoFuncionario é o meu array javascript, que está retornando
//o que está no console, é ele que preciso que vire um único objeto
this.items.subscribe( data => {
this.dadosPontoFuncionario = data;
console.log(this.dadosPontoFuncionario);
})