admin管理员组文章数量:1345129
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 01 Answer
Reset to default 14Math.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));
本文标签: Like excel Mround function in JavascriptStack Overflow
版权声明:本文标题:Like excel Mround function in Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743781208a2537861.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论