Question: Which is the correct syntax of creating AngularJS Controller?
A
B
C
D
var app = angular.module('myApp', []);
angular.controller('myCtrl', function(app,$scope) {
});
B
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
});
C
var app = module('myApp', []);
app.controller('myCtrl', function($scope) {
});
D
var app = angular.module('myApp', []);
app.controller( function($scope) {
});
Note: Not available