The simplest example of an injection in an Angular app - injecting $scope to an Angular Controller:
angular.module('myModule', [])
.controller('myController', ['$scope', function($scope) {
$scope.members = ['Alice', 'Bob'];
...
}])
The above illustrates an injection of a $scope into ...