How do we access the properties of an object inside an object class which is also inside an object class?
Here I can access test.company.phone but not the test.company.company_name.company_id in the ng.html file?
public test: Employee = {
emp_id: 0,
name: 'test',
surname: 'test2',
company: {
c_id: 12,
company_name: [{ company_id: 101, name: 'abc' },{ company_id: 101, name: 'abc' }]
phone: '+665589898',
},
};