js如何将数字转换为小数格式字符串,下面web建站小编给大家简单介绍一下toFixed()
、toExponential()
、toPrecision()
的运用!
toFixed的运用
var a = 3.1415926; console.log(a.toFixed(2)); //3.14 console.log(a.toFixed(4)); //3.1416 //toFixed() 能够把数值转换为字符串,并显示小数点后的指定位数。
toExponential的运用
var a = 123456789; console.log(a.toExponential(2)); //1.23e+8 console.log(a.toExponential(4)); //1.2346e+8 //toExponential()方法专门用来把数字转换为科学计数法形式的字符串。
toPrecision的运用
var a = 123456789; console.log(a.toPrecision(2)); //1.2e+8 console.log(a.toPrecision(4)); //1.235e+8 //toPrecision()方法与 toExponential()方法相似,但它可以指定有效数字的位数,而不是指定小数位数。
标签: toExponential, toFixed, toPrecision, 小数格式, 数字转换
上面是“js如何将数字转换为小数格式字符串”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3164.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!