目录

JavaScript Number.toExponential()

示例1

将数字转换为指数表示法:

let num = 5.56789;
let n = num.toExponential();
亲自试一试 »

描述

toExponential() 方法将数字转换为指数表示法。

示例2

let num = 5.56789;
let n = num.toExponential(3);
亲自试一试 »


语法

number.toExponential( x)

参数

Parameter Description
x Optional. An integer between 0 and 20 representing the number of digits in the notation after the decimal point. If omitted, it is set to as many digits as necessary to represent the value

返回值

一个字符串,将数字表示为指数表示法。

浏览器支持

toExponential()是 ECMAScript3 (ES3) 功能。

所有浏览器均完全支持 ES3 (JavaScript 1999):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes