So, there is an object, inside which there are some other objects, and inside them there are more objects. Please, tell me how to output key values. I suppose *ngFor won't help
const data = {
first_data: {
id: "1",
name: "First",
type: "Administration",
sections: {
main_section: {
id: "main_section",
name: "Main Section",
sub_sections: {
sub_first: {
id: "12",
name: "Subsection_name",
questions: {
first_question: {
id: "44",
name: "Answer"
},
second_question: {
id: "33",
name: "True"
}
}
}
}
}
}
}
}