您的位置:58脚本 > TypeScript Number方法toFixed()

TypeScript Number方法toFixed()

2023-05-18 15:32 TypeScript教程

 TypeScript Number方法toFixed()

TypeScript Number方法 toFixed()

toFixed()方法格式化一个小数点右侧具有特定位数的数字。

语法

number.toFixed( [digits] )

参数详情

digits - 小数点后显示的位数。

返回值

数字的字符串表示形式,不使用指数表示法,并且在小数位之后具有确切的位数。

示例

var num3 = 177.234 
console.log("num3.toFixed() is "+num3.toFixed()) 
console.log("num3.toFixed(2) is "+num3.toFixed(2)) 
console.log("num3.toFixed(6) is "+num3.toFixed(6))

在编译时,它将在JavaScript中生成相同的代码。

代码将产生以下输出:

num3.toFixed() is 177 
num3.toFixed(2) is 177.23 
num3.toFixed(6) is 177.234000
阅读全文
以上是58脚本为你收集整理的 TypeScript Number方法toFixed()全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 58脚本 58jiaoben.com 版权所有 联系我们
桂ICP备12005667号-28 Powered by CMS