I'm confused why my {{item}} isn't being bound to the Controller's data object.
My HTML is just "{{item}}."
<div ng-controller="Controller">
<table>
<tbody ng-repeat='items in data'>
<tr ng-repeat='item in items'>
<td>{{item}}</td>
</tr>
</tbody>
</table>
</div>
.
function Controller($scope) {
$scope.data = ["Monday", "Tuesday", "Wednesday"];
}