标签: javascript angularjs
如何在JavaScript中将1e-8转换为0.00000001?
1e-8
0.00000001
我正在使用Angular,并且在使用<input type="number">时不喜欢短语法。
<input type="number">
答案 0 :(得分:10)
数字有一个toFixed(digits)方法可以执行此操作:
toFixed(digits)
1e-8.toFixed(8);
如果您有字符串,首先需要将其转换为数字:
parseFloat('1e-8').toFixed(8);