I can't find the meaning of the first $scope in this example:
app.controller('HelloController', function($scope) {
$scope.message = 'Hello World!';
});
I know that this is JavaScript and it is supposed to be a parameter for the function but I don't understand what sort of parameter it sets.
Can anyone help?
Thanks!
