如何将包含科学计数法的字符串转换为正确的 JavaScript 数字格式?


要转换带有科学计数法的字符串,请使用 Number 函数。将值传递给此函数。

示例

你可以尝试运行以下代码,将字符串转换为正确的数字格式 −

在线演示

<!DOCTYPE html>
<html>
   <body>
      <script>
         document.write("String with Scientific Notation converted below:<br>");
         document.write(Number("7.53245683E7"));
      </script>
   </body>
</html>

输出

String with Scientific Notation converted below:
75324568.3

更新于: 17-Jun-2020

1K+ 浏览量

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告