After creating a simple helloworld with angular, I am unable to see the result. The angular.min.js file is included in the html and loads correctly in the browser. Here is my code:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8>
<title></title>
</head>
<body>
<h1 ng-controller="HelloWorldCtrl">{{helloMessage}}</h1>
<script src="angular.min.js"></script>
<script type="text/javascript">
function HelloWorldCtrl($scope){
$scope.helloMessage = "Hello Mohammad";
}
</script>
</body>
</html>
The current Result : {{helloMessage}}