I am working on a project where I am using Angular 5. I am a newbie to angular so I am stucking while getting values from json object. Here is the json response
[{"student_guid":"198","seconds":510,"session_count":0,"unit_1":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0}}]
All I need to access unit_1 values. I am using a table to show this data so I want to iterate td. I am getting other data very easily by using *ngFor. Please provide me an easy solution to extract data from unit_1 key. It would be great if I can manage all this in html view instead of typescript.