I have a number inputtext to user input the number of fields(textarea inputs) he wants to 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 something like a simply for (for var = 1 to 5, for example) for AngularJs ng-repeat or similar way to do it easily?