Skip to content

Instantly share code, notes, and snippets.

@pssubashps
Created November 20, 2015 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pssubashps/7283517591b460b464e2 to your computer and use it in GitHub Desktop.
Save pssubashps/7283517591b460b464e2 to your computer and use it in GitHub Desktop.
ang-ex-1
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"> </script> </head> <body ng-app> Amount : <input type="text" ng-model="amount"/><br/> Year : <input type="text" ng-model="year"/><br/> Rate : <input type="text" ng-model="rate"/><br/> <br/> EMI = {{amount*year*rate}} </body> </html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment