I have series of numbers $scope.N = [1,2,3,4]; I want to ng-repeat this in my Html code, something like JSON ng-repeat example
<tr ng-repeat="row in categories">
<td>{{row.category}}</td>
</tr>
Hov to do that with array of numbers ?
I have series of numbers $scope.N = [1,2,3,4]; I want to ng-repeat this in my Html code, something like JSON ng-repeat example
<tr ng-repeat="row in categories">
<td>{{row.category}}</td>
</tr>
Hov to do that with array of numbers ?