I recently started using JSHint and it is requiring me to use the function form of \"use strict\". Since then, AngularJS throws an error:
\"Error: Argument \'webAddressC
Another way to do what @pkzolowski is doing if your angular module is already loaded elsewhere:
var app = angular.module('myApp');
app.controller(...);
app.service(...);
...
It is based on the comment from here: angularjs defining services for the same module in different files
Beware that using angular.module('myModule', []) will create the module myModule and overwrite any existing module named myModule. Use angular.module('myModule') to retrieve an existing module.