Hey there! I'm new to working with angular js and have been exploring the documentation on the official site. I attempted to implement a solution, but unfortunately, no data was displayed. Can someone point out what I may be doing incorrectly?
This is the array I am working with:
$scope.newArray = [{
name: 'Robert',
chemical: [{
chem_status:"Active",
chem_code:"0098A"
}],
place: 'London'
},
{
name: 'Andy',
chemical: [{
chem_status:"Active",
chem_code:"0098A"
}],
place: 'London'
}];
Below is a snippet of my html code:
<tr role="row" ng-repeat="chemical in newArray.chemical by $index">
<td class="sorting_1">{{chemical.chem_status}}</td>