4

I would like to find a function that will return this kind of formatted values :

1.5555 => 1.55
1.5556 => 1.56
1.5554 => 1.55
1.5651 => 1.56

toFixed() and math round return this value :

1.5651.fixedTo(2) => 1.57

This will be usefull for money rounding.

mplungjan
  • 169,008
  • 28
  • 173
  • 236
bdo334
  • 380
  • 2
  • 9
  • 20

3 Answers3

6

How about this?

function wacky_round(number, places) {
    var multiplier = Math.pow(10, places+2); // get two extra digits
    var fixed = Math.floor(number*multiplier); // convert to integer
    fixed += 44; // round down on anything less than x.xxx56
    fixed = Math.floor(fixed/100); // chop off last 2 digits
    return fixed/Math.pow(10, places);
}

1.5554 => 1.55

1.5555 => 1.55

1.5556 => 1.56

1.5651 => 1.56

So, that works, but I think you'll find that it's not a generally-accepted way to round. http://en.wikipedia.org/wiki/Rounding#Tie-breaking

Mark Bessey
  • 19,598
  • 4
  • 47
  • 69
  • Sorry, copy and paste error while formatting for the site. Oh, and you're clear on why you shouldn't use this rounding method, right? – Mark Bessey Apr 04 '11 at 20:04
  • it was not for my consumption ;) however the one [asking](http://stackoverflow.com/questions/5535394/round-off-decimal-using-javascript) wanted to round amounts from .181 to .18 and .185 to .19 which I am never so sure of. toFixed(2) feels wrong in these cases. – mplungjan Apr 05 '11 at 06:00
3

And standard function

fixedTo = function (number, n) {
  var k = Math.pow(10, n);
  return (Math.round(number * k) / k);
}

and then call

fixedTo(1.5555, 2)  // 1.56
fixedTo(1.5555, 2)  // 1.556
fixedTo(0.615, 2)   // 0.62
dperish
  • 1,493
  • 16
  • 27
Jaroslav Moravec
  • 428
  • 3
  • 6
  • 18
  • This solution doesn't work for `1.005`. I recommend using [this function instead](http://stackoverflow.com/a/23204425/573634) – Hanna Mar 29 '16 at 16:53
0

You can use the native Number.toFixed() method.

parseFloat(10.159.toFixed(2))

The above returns 10.16. Number.toFixed() returns a string, so I use parseFloat to convert it to a number.

Johnny Oshika
  • 54,741
  • 40
  • 181
  • 275