angular
.module('ApplicationOne',[])
.controller('myControllerOne', function($scope){
$scope.name = "Luther";
$scope.fname = "Martin";
$scope.ed = "B.TECH";
});
angular
.module('App2',[])
.controller('myControllerTwo', function($scope){
$scope.name = "Juliet";
$scope.fname = "Willium";
$scope.ed = "BSC";
});
In my localhost, the first module is working fine, but problem with the second module, I can't catch it even I referred official documentation of AngularJS, Please give some brief about this, I'm very interested to learn 'ng-script', And i'm a starter on this topic.Click to see the result in my localhost Here's the link of my jsfiddle: https://jsfiddle.net/daranaveen007/dt256cep/