JSAngular-09

Modules

by munir

HTML

<html ng-app="myApp">
    <div ng-controller="Example">
        {{name}}
    </div>
    <script>
        angular.module('myApp',[])
        .controller('Example',function($scope){
            $scope.name = "Example page";
        });
    </script>
</html>