Round to two decimal places - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:jQuery Method Example

Description

Round to two decimal places

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){//from w  w w  . ja v a  2 s  .c  o  m
var num = 2.855999999999;
num = Math.round(num * 1000) / 1000;
console.log(num);
    });

      </script> 
   </head> 
   <body>  
   </body>
</html>

Related Tutorials