Javascript examples for jQuery Method and Property:jQuery Method Example
Round to two decimal places
<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>