Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

AngularJS ng-init Directive


Example

Create a variable when initiating the application:

<div ng-app="" ng-init="myText='Hello World!'">

<h1>{{myText}}</h1>
Try it Yourself »

Definition and Usage

The ng-init directive evaluates the given expression(s).

The ng-init directive can add some unnecessary logic into the scope, and you are recommended to do your evaluations in a controller instead, see the ng-controller directive.


Syntax

<element ng-init="expression" ></element>

Supported by all HTML elements.


Parameter Values

Value Description
expression An expression to evaluate.