Misko Hevery, a Google employee, developed AngularJS. First version 1.0 of AngularJS was released in 2012. Now AngularJS is fully…
AngularJS expressions contain operators,literals, and variables. AngularJS expressions can be written inside HTML while JavaScript expressions can't be. AngularJS expressions…
Modules are containers for appication controller. They contain different parts of an application. [html] {{ state + " " +…
Using Directives you can extend HTML attributes. In AngularJS you can define your own directives while it has its own…
Using ng-model directive you bind value of input controls to the application data. [html] My Name: [/html] Try Validating…
Controllers are used to control the flow of data in AngularJS application. ng-controller directive is used to define controller. Controllers…
Scope joins the view and the controller. There are 3 parts of AngularJS program: Model, View and Controller. $scope is…
AngularJS provides Filter to modify data in view. There are different types of filters as per requirement. uppercase : uppercase…
Services are JavaScript functions that are designed to perform some specific operation. These services can be called by controllers and…
$http service is used to get data from remote server. It makes HTTP request to get data. Following are methods…