Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using javascript to bind to some checkboxes, and the toFixed(2) is not rounding up. Any ideas why it's not rounding? For instance, if the number is 859.385 it's only displaying 859.38 instead of 859.39.

I've also read that the toFixed can round differently depending on which browser you are using, anyone know of a way around this so that my javascript calculations match my php calculations?

var standardprice = parseFloat($('#hsprice_'+this.id.split('_')[1]).val());
var price =  parseFloat($('#hprice_'+this.id.split('_')[1]).val());
var discount =  parseFloat($('#hdiscount_'+this.id.split('_')[1]).val());
var deposit =  parseFloat($('#hdeposit_'+this.id.split('_')[1]).val());

var currSprice = parseFloat($('#hTotalSprice').val());
var currPrice = parseFloat($('#hTotalPrice').val());
var currDiscount = parseFloat($('#hTotalDiscount').val());
var currDeposit = parseFloat($('#hTotalDeposit').val());

currSprice += standardprice;
currPrice += price;
currDiscount += discount;
currDeposit += deposit;

$('#lblTotalSprice').text('$'+addCommas(currSprice.toFixed(2)));
$('#lblTotalPrice').text('$'+addCommas(currPrice.toFixed(2)));
$('#lblTotalDiscount').text('$'+addCommas(currDiscount.toFixed(2)));
$('#lblTotalDeposit').text('$'+addCommas(currDeposit.toFixed(2)));

$('#hTotalSprice').val(currSprice.toFixed(2));
$('#hTotalPrice').val(currPrice.toFixed(2));
$('#hTotalDiscount').val(currDiscount.toFixed(2));
$('#hTotalDeposit').val(currDeposit.toFixed(2));
share|improve this question

5 Answers

JavaScript's .toFixed() function is extremely buggy. It is very unpredictable with whether it rounds the results up or down.

Try running the following code in Chrome or Firefox:

( 0.035 ).toFixed( 2 ); // 0.04
( 0.045 ).toFixed( 2 ); // 0.04

It shows how unpredictably the .toFixed() method can be. I'd suggest writing your own method for this. The following should do what you want:

​function toFixed( number, precision ) {
    var multiplier = Math.pow( 10, precision );
    return Math.round( number * multiplier ) / multiplier;
}
​
share|improve this answer
4  
It's not buggy. It's just how floating pointer numbers work, which might not be expected. – user166390 May 26 '12 at 17:05
1  
Buggy might not be the best word, but it is unpredictable and inconsistent. In the past, I have tested this in different browsers and experienced different results. – Robert Messerle Jul 3 '12 at 18:52
To replicate toFixed completely, you may want to return the rounded value .toFixed(precision). Otherwise you don't get a string with a fixed number of decimals. – Charles Jan 15 at 2:31

You can use the Math.round() to round the number. If you want to round to a specific decimal point you can employ a little math:

var result=Math.round(original*100)/100
share|improve this answer
Number.prototype.roundup= function(dec){
    return (Math.round(this*100)/100).toFixed(dec);
}

var n=859.385
n.roundup(2)

/*  returned value: (String)
859.39
*/
share|improve this answer

In Chrome, toFixed() rounds:

859.385 ==> 859.38
859.386 ==> 859.39

When I look at the ECMAScript 5th edition specification for .toFixed() (section 15.7.4.5), I do not see it explicitly describe rounding though it does describe something fairly obtusely that may be what Chrome has implemented.

It appears to me that if you want to control it with explicit rounding, then you should probably use the oft-suggested workaround of:

var roundedNum = (Math.round( num * 100 ) / 100).toFixed(2);

This will guarantee that you get predictable rounding like you are used to.

Working demo here: http://jsfiddle.net/jfriend00/kvpgE/

share|improve this answer

Use:

var result = Math.round( myNumber * 100 ) / 100;

For example:

$('#hTotalSprice').val(Math.round( currSprice * 100 ) / 100);

Or write your own function for doing that:

function roundMyNumber( num ) {
    return Math.round( num * 100 ) / 100;
}
$('#hTotalSprice').val( roundMyNumber( currSprice ) );
share|improve this answer

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.