Here is the JSON structure that I have:
{
"first_name": "Peter",
"surname": "Parker",
"adresses": {
"adress": [{
"info1": "intern",
"info2": "bla1"
}, {
"info1": "extern",
"info2": "bla2"
}, {
"info1": "group",
"info2": "bla3"
}, {
"info1": "outdoor",
"info2": "bla4"
}, {
"info1": "indoor",
"info2": "bla5"
}]
}}
Question: How can I utilize *ngFor to loop through all addresses?
Thank you in advance and best regards, Filout