1、描述
此方法返回表示指数符号中的number对象的字符串。
2、语法
它的语法如下:
number.toExponential( [fractionDigits] )
3、参数
fractionDigits :一个整数,指定小数点后的位数。 默认值为指定数字所需的任意数字。。
4、返回值
以指数记数法表示Number对象的字符串,小数点前有一位,小数点后取整为fractionDigits
。如果省略了fractionDigits
参数,那么小数点后的位数默认为唯一表示该值所需的位数。
5、示例
<html> <head> <title>Javascript Method toExponential()</title> </head> <body> <script type = "text/javascript"> var num = 54.2378; 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 = 54.2378.toExponential(); document.write("54.2378.toExponential()is : " + val ); document.write("<br />"); val = 54.2378.toExponential(); document.write("54 .toExponential() is : " + val); </script> </body> </html>
6、输出
num.toExponential() is : 5.42378e+1 num.toExponential(4) is : 5.4238e+1 num.toExponential(2) is : 5.42e+1 54.2378.toExponential()is : 5.42378e+1 54.toExponential() is : 5.42378e+1