Here is firstAngularJSApp.html
<html ng-app="store"><!-- "ng-app" creates and angular app by running the module. because of ng-app html inside of this tag will be treated as part of angular app -->
<head>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css"/>
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript" src="app.js"/>
</head>
<body>
<p>I am {{ 4+6 }}</p>
</body>
</html>
Here is app.js
var app = angular.module('store',[]);
When I load the page I don't get "I am 10" rather it's blank page. But when I open the source code using Ctrl+U
I can see "<p>I am {{ 4+6 }}</p>"
I am using XAMMP to access my files.