Closed
Description
Hi,
I wanna iterate through FirebaseListObservable<[]> object and create an array of objects. I am having a hard time figuring how to access the values from it.
Here is my code
users:FirebaseListObservable<IUser[]>;
this.users = this.af.database.list("/users");
this.users.forEach(element => {
console.log(element);
});
This is how the object "element" looks like in the console
Please help