Just diving into angularjs, I have a question. Can I include multiple dependency modules in AngularJS?
sample code:
angular.module('myApp', ['dependency1','dependency2']);
I attempted this approach as well without success
angular.module('myApp', ['dependency1'],['dependency2']);
Any guidance on this would be greatly appreciated. Thank you.