access key and value of object using *ngFor
As in latest release of Angular (v6.1.0) , Angular Team has added new built in pipe for the same named as keyvalue pipe to help you iterate through objects, maps, and arrays, in the common module of angular package. For example – <div *ngFor=”let item of testObject | keyvalue”> Key: <b>{{item.key}}</b> and Value: <b>{{item.value}}</b> </div> … Read more