<!DOCTYPE html>
<html>
    <head>
        <title>Wikitechy AngularJS Tutorials</title>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"> </script>
    </head>
    <body>
        <div ng-app="myApp" ng-controller="repeatCtrl" >
            <h2>Wikitechy Tutorials list </h2>
            <ul>
                <li ng-repeat="data in list" > {{data}} </li>
            </ul>
        </div>
        <script>
            var app = angular.module("myApp", []);
            app.controller("repeatCtrl", function($scope) {
                $scope.list = [
                    "HTML",
                    "PHP",
                    "CSS",
                    "JAVA",
                ]
            });
        
</script>
    </body>
</html>
 


www.wikitechy.com © Copyright 2016. All Rights Reserved.