I'm currently on a project involving Angular 5, and I'm still new to using Angular so I'm facing some challenges retrieving values from a JSON object. Here's 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}}]
My main objective is to access the values of unit_1. I'm displaying this data in a table and would like to iterate through the td elements. Retrieving other data with *ngFor is simple, but I need an easy solution to extract data from the unit_1 key. It would be ideal if I could handle all of this directly in the HTML view without involving typescript.