I am still very new to AngularJS and am working through setting up my first application. I would like to be able to do the following:
angular.module(\'App.c
If you are getting controller is not defined error you have to write your controller name within the quotes.
or define your controller like this
function controllerName() { //your code here }
refer this: Uncaught ReferenceError:Controller is not defined in AngularJS