Pronoun – Reflexive Pronoun

In Reflexive Pronoun, action of the verb is reflected on the subject. In a sentence when subject and object of…

9 years ago

Models – AngularJS

Using ng-model directive you bind value of input controls to the application data. [html] My Name: [/html] Try   Validating…

9 years ago

Pronoun – Emphatic Pronoun

When Reflexive pronouns are used for sake of emphasis on Nouns or Pronouns then they are called as Emphatic Pronouns.…

9 years ago

Controllers – AngularJS

Controllers are used to control the flow of data in AngularJS application. ng-controller directive is used to define controller. Controllers…

9 years ago

Scope – AngularJS

Scope joins the view and the controller. There are 3 parts of AngularJS program: Model, View and Controller. $scope is…

9 years ago

Filters – AngularJS

AngularJS provides Filter to modify data in view. There are different types of filters as per requirement. uppercase : uppercase…

9 years ago

Services – AngularJS

Services are JavaScript functions that are designed to perform some specific operation. These services can be called by controllers and…

9 years ago

AJAX Http – AngularJS

$http service is used to get data from remote server. It makes HTTP request to get data. Following are methods…

9 years ago

Tables – AngularJS

To display data in tabular forms, we generally use ng-repeat directive that repeats an array of objects. [html] state city…

9 years ago

Select options – AngularJS

ng-options is used to create options list from select drop down. It traverses through array or object to make the…

9 years ago