i'm doing project with angular and firebase. I get an object from firebase and I would like to display it in html, but I don't know how to get value from the object in the array. How can I iterate through auto indexes from the firebase ?
This is calls Firebase:
getListTasks() {
return this.db.list('/Tasks').valueChanges();
}
This is my component:
this.taskService.getListTasks().subscribe(t => {
this.todoTasks = t;
});
This is my object in the array : https://i.stack.imgur.com/npowv.jpg