I noticed the same question was asked a few times here, I tried so solve it but nothing helps.
I\'m following this tutorial with the egghead videos.
But whe
I have faced this issue and it fixed with following way:
first remove ng-app from:
add name of ng-app to myApp:
add this line of code before function:
angular.module('myApp', []).controller('FirstCtrl',FirstCtrl);
final look of script:
angular.module('myApp', []).controller('FirstCtrl',FirstCtrl);
function FirstCtrl($scope){
$scope.data = {message: "Hello"};
}