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


Typescript toFixed()用法及代码示例


TypeScript中的toFixed()函数用于使用定点符号来格式化数字。它可用于格式化带有小数点右边特定位数的数字。

用法:

number.toFixed( [digits] );

参数:此函数接受参数值-位数-小数点后出现的位数。

返回值:TypeScript中的toFixed()方法返回数字的字符串表示形式,该数字表示形式不使用 index 表示法,并且具有精确的小数位数。

以下示例说明了TypeScript中toFixed()函数的工作方式:示例1:



Javascript

var num = 358.429  
console.log("num.toFixed() is "+num.toFixed())  
console.log("num.toFixed(2) is "+num.toFixed(2))

输出:

num.toFixed() is 358 
num.toFixed(2) is 358.42

范例2:

Javascript

var num1 = 526.123  
console.log("num1.toFixed() is "+num1.toFixed())  
console.log("num1.toFixed(4) is "+num1.toFixed(4))  
console.log("num1.toFixed(7) is "+num1.toFixed(7))

输出:

num1.toFixed() is 526 
num1.toFixed(4) is 526.1230
num1.toFixed(7) is 526.1230000

相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 TypeScript | toFixed() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。