Skip to content

Instantly share code, notes, and snippets.

@EmmanuelDemey
Created November 24, 2014 12:37
Show Gist options
  • Select an option

  • Save EmmanuelDemey/b939769c694082de46e9 to your computer and use it in GitHub Desktop.

Select an option

Save EmmanuelDemey/b939769c694082de46e9 to your computer and use it in GitHub Desktop.
Slide 28 - Expressions in AngularJS
<table class="key-list" id="products" data-ng-init="price=50; qty=3">
<tr><td>Product name</td><td>Price</td><td>Qty</td><td>Total</td></tr>
<tr>
<td>AngularJS book for newbies</td>
<td id="price">{{price}}</td>
<td id="qty">{{qty}}</td>
<td id="total">{{price * qty}}</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment