I'm trying to identify if I understand some core concepts in AngularJS. If I have a line of code that says:
.controller('MyCtrl', function($scope) {
and I change it to:
.controller('MyCtrl', function($scope, $myService) {
Is it correct to say that "$myService was injected into MyCtrl". Or is it more correct to say that "$myService is injected as a dependency of MyCtrl"? Or, should it be said some other way entirely?
Thank you so much!