I am learning AngularJs. I am creating my first application on Plunker but it fails to initialize the controller. what am i missing exactly?
Here is the link of my plunker project
<html ng-app>
<head>
<script data-require="angular.js@*" data-semver="1.4.0-beta.1" src="https://code.angularjs.org/1.4.0-beta.1/angular.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body ng-controller="testcontroller">
<h1>Hello {{message}}</h1>
</body>
</html>
var testcontroller = function($scope) {
$scope.message = "world";
};