JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app>
    <div ng-controller="TestCtrl">
        <div ng-repeat="a in range(5)">{{$index + 1}}</div>
        {{range}}
    </div>
</div>

JavaScript

function TestCtrl($scope) {
    $scope.range = function(n) {
        return new Array(n);
    };
};