TypeScript Number方法toExponential()

2019-01-08 17:35 更新

TypeScript Number方法 toExponential()

此方法以指数表示法返回表示number对象的字符串。

语法

number.toExponential( [fractionDigits] )

参数详情

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

返回值

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

示例

//toExponential() 
var num1 = 1225.30 
var val = num1.toExponential(); 
console.log(val)

在编译时,它将在JavaScript中生成相同的代码。

其输出如下:

1.2253e+3
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号