AngularJS Events
1) ng-click <!DOCTYPE html> <html> <head> <meta chrset=”UTF 8″> <title>Event</title> </head> <body ng-app=””> <script src=””></script> <script src=””></script> <h1> Script guru Global Event</h1> <button ng-click=”count = count + 1″ ng-init=”count=0″> Increment </button> <div>The Current Count is {{count}}</div> </body> </html> We are…