I don't want to use for loop to convert Object to Array like this! If doubled the process and slow down the performance of app (I'm using Ionic2 and Typescript, with Firebase)
for(let key in data) { array.push(value); }
Is there any solution to iterate object itself(shown in picture attached) using *ngFor.
Or I can convert this Object(shown in picture attached) to Array, so that can be iterable in *ngFor.