Description
ng:init
attribute allows the for initialization tasks to be executed
before the template enters execution mode during bootstrap.
Dependencies
Usage
<ANY ng:init="expression">
...
</ANY>
Parameters
expression – {expression} –
to eval.
Example
<div ng:init="greeting='Hello'; person='World'">
{{greeting}} {{person}}!
</div>