JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app='myApp' ng-controller="Main">
    <span ng-repeat="n in range('5')">Start{{$index}} &nbsp;&nbsp;</span>
</div>

JavaScript

var myApp = angular.module('myApp', []);
function Main($scope){
  $scope.range = function(count){
    return new Array(+count);
  };
};