Can a loop be simplified in AngularJs to easily determine the number of textarea inputs a user can fill?
<input type="number" class="form-control" min="1" max="4" value="1">
<div ng-repeat="...">
<div class="form-group">
<textarea class="form-control" rows="3"></textarea>
</div>
</div>
</div>
Is there a straightforward way to iterate through a set number of times, like a for loop in AngularJs ng-repeat or an alternative method?