当数字在JS中有X个数字时,使用toExponentional()定义

时间:2018-04-25 18:28:19

标签: javascript function math numbers

所以就是这种情况,我希望在我的数字有4位数字(因此0.001是1.00e-3和574635是5.75e5)之后将数字转换为科学(指数)符号

1 个答案:

答案 0 :(得分:1)

  const format = n => ("" + n).length > 4 ? n.toExponential() : n;