如何将包含科学记数法的字符串转换成正确的 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
广告