当前位置:   article > 正文

JS——取整_js 取整百

js 取整百
上取整:
Math.ceil(num)
下取整:
Math.floor(num)
parseInt(str) 可去掉str数字后的非数字字符
四舍五入:
Math.round(num) 缺:只能取整 优:返回number
n.toFixed(2) 优:可取小数 缺:返回字符串,不能直接做加法

自定义四舍五入:

  1. //自定义四舍五入的的方法
  2. function round(num,n) {
  3. num = num * Math.pow(10,n);
  4. //console.log(num);
  5. num = Math.round(num);
  6. //console.log(num);
  7. num = num * Math.pow(10,-n);
  8. return num;
  9. }
  10. console.log(
  11. round(345.678,2),
  12. round(345.678,0),
  13. round(345.678,-1)
  14. );


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/617260
推荐阅读
相关标签
  

闽ICP备14008679号