Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this line of code which rounds my numbers to 2 decimal places. But the thing is I get numbers like this. 10.8, 2.4 etc. These are not my idea of 2 decimal places so how I can improve this:

Math.round(price*Math.pow(10,2))/Math.pow(10,2);

I want numbers like 10.80, 2.40 etc. Use of JQuery is fine with me.

share|improve this question

8 Answers

up vote 244 down vote accepted

To format a number using fixed-point notation, you can simply use the toFixed method:

(10.8).toFixed(2); // 10.80

var num = 2.4;
alert(num.toFixed(2)); // 2.40
share|improve this answer
5  
Doesn't work consistently across all browsers, ie (0.09).toFixed(1); gives 0.0 in IE8 – ajbeaven Oct 10 '11 at 22:55
21  
fixed doesn't round, you can do it first: (Math.round(0.09)).toFixed(1); – rekans Jan 20 '12 at 11:02
7  
@rekans: This is wrong. Math.Round(0.09) will return 0 so this will always give 0.0... – Chris May 11 '12 at 10:33
4  
This is a bad idea in most situations, it converts the number to a string or float point number in some cases. – Ash Blue Jun 20 '12 at 15:19
17  
Have to agree with @AshBlue here... this is only safe for formatting presentation of values. May break code with further calculations. Otherwise Math.round(value*100)/100 works better for 2DP. – UpTheCreek Aug 2 '12 at 6:11
show 2 more comments

I usually add this to my personal library

function precise_round(num,decimals){
return Math.round(num*Math.pow(10,decimals))/Math.pow(10,decimals);
}

And call it like:

var what=precise_round(0.45674,2);
alert(what); //Returns 0.46
share|improve this answer
1  
precise_round(1.275,2) is 1.27? – bighostkim Mar 14 at 4:25
precise_round(6,2) returns 6 (no decimals as asked in the question) – Imre Apr 10 at 12:41

toFixed(n) provides n length after the decimal point; toPrecision(x) provides x total length.

Use this method below

// Example: toPrecision(4) when the number has 7 digits (3 before, 4 after)
    // It will round to the tenths place
    num = 500.2349;
    result = num.toPrecision(4); // result will equal 500.2

AND if you want the number to be fixed use

result = num.toFixed(2);
share|improve this answer

@heridev and I created a small function in jQuery.

You can try next:

HTML

<input type="text" name="one" class="two-digits"><br>
<input type="text" name="two" class="two-digits">​

jQuery

// apply the two-digits behaviour to elements with 'two-digits' as their class
$( function() {
    $('.two-digits').keyup(function(){
        if($(this).val().indexOf('.')!=-1){         
            if($(this).val().split(".")[1].length > 2){                
                if( isNaN( parseFloat( this.value ) ) ) return;
                this.value = parseFloat(this.value).toFixed(2);
            }  
         }            
         return this; //for chaining
    });
});

​ DEMO ONLINE:

http://jsfiddle.net/c4Wqn/

share|improve this answer
Too complicated... – Adrian Salazar May 17 at 13:56

Maybe you want to include a sprintf library for JavaScript.

share|improve this answer

I didn't find an accurate solution for this problem, so i created my own.

function inprecise_round(value, decPlaces) {
  return Math.round(value*Math.pow(10,decPlaces))/Math.pow(10,decPlaces);
}

function precise_round(value, decPlaces){
    var val = value * Math.pow(10, decPlaces);
    var fraction = (Math.round((val-parseInt(val))*10)/10);

    //this line is for consistency with .NET Decimal.Round behavior
    // -342.055 => -342.06
    if(fraction == -0.5) fraction = -0.6;

    val = Math.round(parseInt(val) + fraction) / Math.pow(10, decPlaces);
    return val;
}

//this may produce different results depending on the browser environment
342.055.toFixed(2) // 342.06 on Chrome & IE10

inprecise_round(342.055, 2) // 342.05
precise_round(342.055, 2) // 342.06
precise_round(-342.055, 2) // -342.06
share|improve this answer

I don't know why can't I add a comment to a previous answer (maybe I'm hopelessly blind, dunno), but I came up with a solution using @Miguel's answer:

function precise_round(num,decimals){
return Math.round(num*Math.pow(10,decimals))/Math.pow(10,decimals);
}

And its two comments (from @bighostkim and @Imre):

  • Problem with precise_round(1.275,2) not returning 1.28
  • Problem with precise_round(6,2) not returning 6.00 (as he wanted).

My final solution is as follows:

function precise_round(num,decimals){
    var sign = num >= 0 ? 1 : -1;
    return (Math.round((num*Math.pow(10,decimals))+(sign*0.001))/Math.pow(10,decimals)).toFixed(decimals);
}

As you can see I had to add a little bit of "correction" (it's not what it is, but since Math.round is lossy - you can check it on jsfiddle.net - this is the only way I knew how to "fix" it). It adds 0.001 to the already padded number, so it is adding a 1 three 0s to the right of the decimal value. So it should be safe to use.

After that I added .toFixed(decimal) to always output the number in the correct format (with the right amount of decimals).

So that's pretty much it. Use it well ;)

EDIT: added functionality to the "correction" of negative numbers.

share|improve this answer
result = parseFloat(92.28941667);
desiredDecPlaces = parseInt(2);
actualDecPlaces = parseInt(8);

for (i=actualDecPlaces-1;i>=desiredDecPlaces;i--)
{
    tmp5 = '1';
    for (j=1;j<=i;j++) {tmp5 = tmp5 + '0';}
    power = parseInt(tmp5);
    result = Math.round(result*power)/power
    alert(result);
}
share|improve this answer
3  
cool script :D. – Syed Umar Ahmed Aug 23 '12 at 9:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.