JSFiddle - React, Tailwind, and code Playground

by Sajeetharan Sinnathurai

HTML

<script src="https://code.angularjs.org/1.3.9/angular.js"></script>

   <body> 
        <div class="container"  ng-controller='SimpleController'>
            <h3>Looping with the ng-repeat Directive</h3>
            <h4>Data to loop through is initialized using ng-init</h4>
            <ul>
                <li data-ng-repeat="name in names">{{name}}</li>
            </ul>
        </div>
   </body>

JavaScript

var samplesModule = angular.module('samples', []);
            function SimpleController($scope) {
                $scope.names = ['Dave', 'Napur', 'Heedy', 'Shriva'];
            }
 samplesModule.controller('SimpleController', SimpleController);