AngularJS Numbers using AngularJS Binding | AngularJS Interview Question and Tutorials

,
AngularJS numbers are like JavaScript numbers. Using ng-bind, we can bind the AngularJS numbers.
The below angularJS code snippet gives an example of AngularJS numbers using ng-bind

<div ng-app="" ng-init="quantity=1;cost=5">

<p>Total in dollar: <span ng-bind="quantity * cost"></span></p>

</div>