Is there a way to ng-repeat a defined number of times instead of always having to iterate over an array?
For example, below I want the list item to show
JS (in your AngularJS controller)
$scope.range = new Array(MAX_REPEATS); // set MAX_REPEATS to the most repetitions you will ever need in a single ng-repeat that makes use of this strategy
HTML
...where repeatCount is the number of repetitions that should appear in this location.