JavaScript Number toExponential()函数
描述
该方法返回用指数表示的数值对象的字符串。
语法
其语法如下所示 −
number.toExponential( [fractionDigits] )
参数详情
fractionDigits - 一个整数,指定小数点后的位数。默认为足够指定该数字所需的位数。
返回值
一个表示Number对象的字符串,使用指数表示法表示,小数点前有一个数字,小数点后精确到 fractionDigits 位。如果省略了 fractionDigits 参数,则小数点后的位数默认为足够表示该值的位数。
示例
尝试以下示例。
<html>
<head>
<title>Javascript Method toExponential()</title>
</head>
<body>
<script type = "text/javascript">
var num = 77.1234;
var val = num.toExponential();
document.write("num.toExponential() is : " + val );
document.write("<br />");
val = num.toExponential(4);
document.write("num.toExponential(4) is : " + val );
document.write("<br />");
val = num.toExponential(2);
document.write("num.toExponential(2) is : " + val);
document.write("<br />");
val = 77.1234.toExponential();
document.write("77.1234.toExponential()is : " + val );
document.write("<br />");
val = 77.1234.toExponential();
document.write("77 .toExponential() is : " + val);
</script>
</body>
</html>
输出
num.toExponential() is : 7.71234e+1
num.toExponential(4) is : 7.7123e+1
num.toExponential(2) is : 7.71e+1
77.1234.toExponential()is:7.71234e+1
77 .toExponential() is : 7.71234e+1