當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Number toExponential()用法及代碼示例


編號 toExponential() 方法

toExponential() 方法是 Number 類的一個方法,用於將數字轉換為 index 格式。

用法:

    Number.toExponential([n]);

這裏,n是一個可選參數,用於定義符號格式中從 0 到 20 的位數。

例子:

    Input:10
    num = 123.456

    Function call:
    num.toExponential(15)

    Output:
    1.234560000000000e+2

碼:

<html>
<head>
<title>JavaScipt Example</title>
</head>
<body>
<script>
	var num = 123.456;
	
	var exp_res1 = num.toExponential();
	var exp_res2 = num.toExponential(2);
	var exp_res3 = num.toExponential(15);
	
	document.write("exp_res1 = " + exp_res1 + "<br>");
	document.write("exp_res2 = " + exp_res2 + "<br>");
	document.write("exp_res3 = " + exp_res3 + "<br>");
	
</script>
</body>
</html>

輸出

exp_res1 = 1.23456e+2
exp_res2 = 1.23e+2
exp_res3 = 1.234560000000000e+2



相關用法


注:本文由純淨天空篩選整理自 Number toExponential() Method with Example in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。