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
I needed a more dynamic solution to this - where I could increment the repeat.
HTML
Duplicator Control
Create another user with the same permissions
JS
$scope.newUserCount = Array('1');
var primaryValue = 1;
$scope.duplicateUser = function()
{
primaryValue++;
$scope.newUserCount.push(primaryValue)
}