Questions

What are templates in AngularJS?

What are templates in AngularJS?

In AngularJS, templates are written with HTML that contains AngularJS-specific elements and attributes. AngularJS combines the template with information from the model and controller to render the dynamic view that a user sees in the browser.

What is template expression in Angular?

A template expression produces a value and appears within the double curly braces, {{ }} . Angular executes the expression and assigns it to a property of a binding target; the target could be an HTML element, a component, or a directive.

Which HTML tag is used to define template in AngularJS?

A static template is defined by using script tag. It must has an id attribute with a unique value and a type attribute with value text/ng-template .

What are the types of directives in AngularJS?

AngularJS Directives

Directive Description
ng-init Initializes AngularJS variables
ng-model Binds HTML control’s value to a property on the $scope object.
ng-controller Attaches the controller of MVC to the view.
ng-bind Replaces the value of HTML control with the value of specified AngularJS expression.
READ ALSO:   What is the truth table for a NOT gate?

How many types of Angular templates are there?

There are two types of template: Static Template. Dynamic Templates.

What are templates in Angular 7?

A template is an HTML snippet that tells Angular how to render the component in angular application. The template is immediately associated with a component defines that component’s view.

What are AngularJS directives list them and their purposes?

AngularJS directives are extended HTML attributes with the prefix ng- . The ng-app directive initializes an AngularJS application. The ng-init directive initializes application data. The ng-model directive binds the value of HTML controls (input, select, textarea) to application data.

What are the filters in AngularJS?

AngularJS Filters

Filter Name Description
Lowercase Converts string to lower case.
Filter Filters an array based on specified criteria and returns new array.
orderBy Sorts an array based on specified predicate expression.
Json Converts JavaScript object into JSON string