Tutorialsplane

AngularJs Round to 2 decimal places


AngularJs Round to 2 decimal places: We often need to round decimal numbers upto two places. We can use JavaScript toFixed() method to round the decimal number upto to the two places. Here in this tutorial we are going to explain how you can use this method to round the decimal numbers. You can also use our online editor to edit and run the code online.


AngularJs Round to 2 decimal places Example

You can use JavaScript toFixed() method to round the decimal numbers upto two places simply as below-

AngularJs Round to 2 decimal places Example:




 
 

  
<div ng-app="myApp">  
<div ng-controller="myController"> 
<button type="button" ng-click="roundNumberExample()">Click Me</button>
<p>Result = {{result}}</p>
</div> 
</div>
  
  

Try it »

If you run the above example it will produce the output something like this –