I\'ve seen that on AngularJS tutorials, that some people declare their controller functions like so:
function FirstController($scrope) { // do something
myApp.controller('myControl',['$scope',function($scope){ $scope.controlname = "Something"; }]);