js 保留n位有效数字
2019-12-03 本文已影响0人
KK_boy
/**
* 保留几位有效数字
*/
const signFigures = (num) => {
const dec = 1; // 保留两位有效数值 (n-1)
const toExponential = num.toExponential(dec) //(转成科学计数法)
const max = Number(toExponential); // 转成普通数字类型
return max;
}
先转成科学计数法,再转为普通数字类型