四捨五入 : spa
var nubm = 6.6666666; var str = nubm.toFixed(2); nubm = +str ; console.log(nubm);
不四捨五入
如下處理結果不會四捨五入:code
第一種blog
var numb = 5555.555555 n =numb.toString(10) n =n.slice(0, n.indexOf('.') + 3); console.log(n)
第二種,先把小數邊整數:字符串
Math.floor(15.7784514000 * 100) / 100 // 輸出結果爲 15.77
第三種,看成字符串,使用正則匹配:console
Number(15.7784514000.toString().match(/^\d+(?:\.\d{0,2})?/)) // 輸出結果爲 15.77,不能用於整數如 10 必須寫爲10.0000
注意:若是是負數,請先轉換爲正數再計算,最後轉回負數class