Hello everyone, I am going to share the code sample with live demo example for Increment counter on clicking on buttons as given below.
The AngularJs code
sample
In the angular section,
we are using the angular reference file only and ng-app is used as default.
The HTML code sample
<body ng-app>
<button ng-click="count = count + 2" ng-init="count=3">
Click for Increment Counter
</button>
<h2>
Total Count: {{count}}
</h2>
</body>
The full live demo example
code as given below
<!doctype html>
<html>
<head>
<title>Example - www.code-sample.com</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.1/angular.min.js"></script>
</head>
<body ng-app>
<button ng-click="count = count + 2" ng-init="count=3">
Click for Increment Counter
</button>
<h2>
Total Count: {{count}}
</h2>
</body>
</html>