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));