You are on page 1of 1

<html>

<head>
<title>Sample code1 angular js</title>

<script src="angular.min.js" type="text/javascript"></script>


</head>
<body >

<div >
plain text:{{10+20}}
</div>
<div ng-app="" ng-init="greet='hello'; amount=100;person={name:'mehak'} ">
{{greet}}<br>
{{person.name}}<br>
{{amount}}<br>

expression:{{10+20}}
</div>
</body>
</html>

You might also like