This is my object containing some arrays
$scope.listInfo = {
id : [2,3],
officerName : ["Bob",'Alex'],
userInfoId : [3,5],
status: ["asd","asd"]
};
this is my html
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Officer Name</th>
<th>User General Info Id</th>
<th>Status Value</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="option in listInfo.id">
<td>{{option}}</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
here i can only Print the Ids But i want print the whole objects What should i do?