当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。