js如何利用tofixed
方法和Math.round
方法实现四舍五入并保留小数点,下面web建站小编给大家详细介绍一下具体实现代码!
利用tofixed方法实现
var nums = 3.1415926; console.log('保留2位小数点:', nums.toFixed(2)); //保留2位小数点: 3.14 console.log('不留小数点:', nums.toFixed(0)); //不留小数点: 3
利用Math.round方法实现
var nums = 3.1415926; console.log('输出结果:', Math.round(nums)); //输出结果: 3
标签: Math.round, toFixed, 保留小数点, 四舍五入
上面是“js实现四舍五入并保留小数点”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3647.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!