I am new to angularjs, Is it possible to add more than one dependency module in AngularJS ?
code:
angular.module('myApp', ['dependency1','dependency2']);
I even tried this but no luck
angular.module('myApp', ['dependency1'],['dependency2']);
Any help will be highly appreciate. Thanks