I have following data structure:
{
'TeamLead': 'Andrew',
'subordinate': [{
'Name': 'Daniel',
'subordinate': [{
'Name': 'Steve',
'subordinate': [{
'Name': 'Steve',
'subordinate': [{
'Name': 'Joe',
}
]
}
]
}
]
}
]
}
I have to show all subordinates list under team lead in Angular, similar to this and dimension of array is not fixed one :
Please help.
