/**
* 保留几位有效数字
*/
const signFigures = (num) => {
const dec = 1; // 保留两位有效数值 (n-1)
const toExponential = num.toExponential(dec) //(转成科学计数法)
const max = Number(toExponential); // 转成普通数字类型
return max;
}
先转成科学计数法,再转为普通数字类型
/**
* 保留几位有效数字
*/
const signFigures = (num) => {
const dec = 1; // 保留两位有效数值 (n-1)
const toExponential = num.toExponential(dec) //(转成科学计数法)
const max = Number(toExponential); // 转成普通数字类型
return max;
}
先转成科学计数法,再转为普通数字类型
本文标题:js 保留n位有效数字
本文链接:https://www.haomeiwen.com/subject/xupcgctx.html
网友评论