JSFiddle - React, Tailwind, and code Playground

by vkarpov15

HTML

<div ng-controller="MyController">
    <div ng-repeat="x in arr">
        {{ x.b }}
    </div>
</div>

JavaScript

function MyController($scope) {
    $scope.arr = [];
    
    for (var i = 0; i < 1000; ++i) {
        $scope.arr.push({ a : i, b : "" + i });   
    }
}