http://plnkr.co/edit/a9ayjHwPjQaFNnuEB4oC?p=preview
var app = angular.module('plunker', []);
app.controller('MainCtrl', ['$scope', '$http', 'extraService', function ($scope,$http,extraService) {
$scope.name = 'World';
console.log(extraService);
}]);
app.service('extraService',function(){
return 'abc';
});
Why is it not returning "abc" in my console?