JavaScript Number toExponential()

时间:2019-08-20 13:50:46  来源:igfitidea点击:

说明

此方法返回一个用指数表示法表示数字对象的字符串。

语法

number.toExponential( [fractionDigits] )

参数

fractionDigits−一个整数,指定小数点后的位数。默认为指定数字所需的位数。

返回值

用指数表示法表示数字对象的字符串,小数点前一位,小数点后四舍五入为小数点后的小数位数。如果省略fractionDigits参数,则小数点后的位数默认为唯一表示该值所需的位数。

示例

var num = 123.4567;
var val = num.toExponential(); 
console.log("num.toExponential()  : " + val );

val = num.toExponential(4);
console.log("num.toExponential(4)  : " + val );

val = num.toExponential(2); 
console.log("num.toExponential(2)  : " + val); 

val = 123.4567.toExponential(); 
console.log("123.4567.toExponential() : " + val ); 

输出

num.toExponential()  : 1.234567e+2
num.toExponential(4)  : 1.2346e+2
num.toExponential(2)  : 1.23e+2
123.4567.toExponential() : 1.234567e+2