标签: javascript function math numbers
所以就是这种情况,我希望在我的数字有4位数字(因此0.001是1.00e-3和574635是5.75e5)之后将数字转换为科学(指数)符号
答案 0 :(得分:1)
const format = n => ("" + n).length > 4 ? n.toExponential() : n;