Monday, 25 April 2016

How to use Expressions in AngularJS ?

You can use AngularJS expressions inside HTML.

Example
<p>
   My age is {{30+1}}
</p>

will results to :
<p>
   My age is 31
</p>


Example
<p>
   {{"Click" + " here"}}
</p>

will results to :
<p>
   Click here
</p>


No comments:

Post a Comment

Note: only a member of this blog may post a comment.