最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Like excel Mround function in Javascript - Stack Overflow

programmeradmin0浏览0评论

I am trying to round a decimal number to nearest fraction number which end with 0 or 5 in Javascript.example if value is 543.55 should return 545 and if value is 541.99 should return 540. i tried with Math.round() but not able to achieve. kindly suggest me how to achieve that. Thanks in advance, Bijay

I am trying to round a decimal number to nearest fraction number which end with 0 or 5 in Javascript.example if value is 543.55 should return 545 and if value is 541.99 should return 540. i tried with Math.round() but not able to achieve. kindly suggest me how to achieve that. Thanks in advance, Bijay

Share Improve this question asked Jan 17, 2015 at 18:54 user1906222user1906222 776 silver badges12 bronze badges 0
Add a ment  | 

1 Answer 1

Reset to default 14

Math.round does the job with a little more extra work. Divide by 5, round it, multiply it back by 5. It is a method I used quite a bit in the past. Here is a simple snippet to show it is working.

function RoundTo(number, roundto){
  return roundto * Math.round(number/roundto);
}

alert(RoundTo(543.55, 5));
alert(RoundTo(541.99, 5));

发布评论

评论列表(0)

  1. 暂无评论