I am attempting to display numbers on the screen from 1 to 100 without relying on arrays or objects. Instead, I have a variable set up like this: $scope.number = 100;
. I have seen solutions for using arrays, but nothing for single numbers. While I can envision a solution utilizing a for loop, I am unsure if ng-repeat can be used in that manner. Is there a workaround or would it be best to create an array with 100 elements and loop through them?