js 精度数据处理

function ForDight(Dight, How) {
   Dight = Math.round(Dight * Math.pow(10, How)) / Math.pow(10, How);
   return Dight;
 }
  console.log(ForDight(10.45935,2));


你可能感兴趣的:(js,精度)