Below is employee details array which have objects in it i want to display employee details in a table row:
this.employeedetails = [
{ id: 1, firstname: 'AM', lastname:'CM', age:3 },
{ id: 1, firstname: 'AM', lastname: 'DIM', age:4 },
{ id: 1, firstname: 'AM', lastname: 'FM', age:5 },
{ id: 1, firstname: 'AM', lastname: 'HM', age:6 }, ];
and this is how i am trying to print my array in html file
{{employeedetails}}