I'm trying to create a series of repeating elements without knowing the amount of repetitions that will be needed. I have an input in which the user will report a numerical value equal to or greater than 1 that will reflect the amount of repetitions required.
<input type="text" ng-model="numeroRepeticoes">
The only repeat command I know is ng-repeat (my knowledge in Angular is not very wide) but in this case it is not apt. Something like this would not work:
<div ng-repeat="{{ numeroRepeticoes }}">...</div>