AngularJS expressions are written inside double braces: {{ expression }}. AngularJS numbers are like JavaScript numbers.
AngularJS Numbers by Example
<div ng-app="" ng-init="quantity=1;cost=5">
<p>Total in dollar: {{ quantity * cost }}</p>
</div>
AngularJS Numbers by Example
<div ng-app="" ng-init="quantity=1;cost=5">
<p>Total in dollar: {{ quantity * cost }}</p>
</div>