close
由於我數學實在太爛了,借用一下
求四捨五入
function
RoundX(val, precision){
return
Math.round(val*Math.pow(
10
, precision))/Math.pow(
10
, precision);
}
引用
文章標籤
全站熱搜
由於我數學實在太爛了,借用一下
求四捨五入
function
RoundX(val, precision){
return
Math.round(val*Math.pow(
10
, precision))/Math.pow(
10
, precision);
}
引用
留言列表