由于js中Number对象自带的fixed方法不是严格的四舍五入,
所以封装了一个
function toFixed2(num,limit) {
const p = Math.pow(10,limit)
return (Math.round(num*p)/p).toFixed(limit);
}
toFixed2(1.45,1)
//'1.5'
由于js中Number对象自带的fixed方法不是严格的四舍五入,
所以封装了一个
function toFixed2(num,limit) {
const p = Math.pow(10,limit)
return (Math.round(num*p)/p).toFixed(limit);
}
toFixed2(1.45,1)
//'1.5'