Hi everybody,
I am trying to learn step by step AngularJS and practising some examples.

In the example below, html solves the angularJS expression 
<div ng-app="">
    <p>First Application : {{ 5 + 5}}</p>    
    
</div>

but why when i try to define a name of ng-app does not solve it 
<div ng-app="eee">
    <p>First Application : {{ 5 + 5}}</p>    
    
</div>
it will be like this code
<div>
  <p>My first expression: {{ 5 + 5 }}</p>
</div>

can someone explain it, please.
thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to