1
次の2つのコードスニペットに違いはありますか?どちらも動作します。まあ
1.
myApp.controller("myAppController", ["$scope", function($scope) {
// function body
}]);
2.
myApp.controller("myAppController", function($scope) {
// function body
});