前端 tofixed方法_用JavaScript中的示例对toFixed()方法进行编号

前端 tofixed方法

toFixed()方法编号 (Number toFixed() Method)

toFixed() method is a method of Number class, it is used to convert a number to the string with a given fixed number of decimals.

toFixed()方法是Number类的一种方法,用于将数字转换为具有给定固定小数位数的字符串。

Syntax:

句法:

    Number.toFixed([n]);

Here, n is an optional parameter, it is used to define the number of decimals, its default value is 0.

在此, n是可选参数,用于定义小数位数,其默认值为0。

Examples:

例子:

    Input: 10
    num = 123.456

    Function call   Output
    num.toFixed()   123
    num.toFixed(0)  123
    num.toFixed(2)  123.45
    num.toFixed(6)  123.45600

Code:

码:

<html>
<head>
<title>JavaScipt Example</title>
</head>
<body>
<script>
	var num = 123.456;
	
	var res1 = num.toFixed();
	var res2 = num.toFixed(0);
	var res3 = num.toFixed(2);
	var res4 = num.toFixed(4);
	var res5 = num.toFixed(6);
		
	document.write("res1 = " + res1 + "<br>");
	document.write("res2 = " + res2 + "<br>");
	document.write("res3 = " + res3 + "<br>");
	document.write("res4 = " + res4 + "<br>");
	document.write("res5 = " + res5 + "<br>");
	
</script>
</body>
</html>

Output

输出量

res1 = 123
res2 = 123
res3 = 123.46
res4 = 123.4560
res5 = 123.456000


翻译自: https://www.includehelp.com/code-snippets/number-toFixed-method-with-example-in-javascript.aspx

前端 tofixed方法

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值