javascript四捨五入の正確な小数点以下の桁数

412 ワード

round   ,      
                 。
Math.round(number) 
    number               。
  
   number           0.5,       number      。  ,round        number      。
例:
Math.round(3.4442,3);      3,   3.444,            ?

       
function xround(x, num){
    Math.round(x * Math.pow(10, num)) / Math.pow(10, num) ;
}
xround(3.44492、 3) //  に れる 3.445