vote up 2 vote down star

Hello , I am looking for an efficient way to cut floating number at Javascript which are long. I need this because my output for taking percentage of two numbers can be sometimes like 99.4444444 while I am only interested in the first 2 digits after "." such as 99.44

My current percentage taking function for 2 numbers:

function takePercentage(x,y){
     return (x /y) * 100;
}
flag

3 Answers

vote up 1 vote down check

How about this:

Math.round( myfloatvalue*100 ) / 100
link|flag
this works with google visualisation api table generation while "toFixed(2)" somehow doesn't. – Hellnar Sep 22 at 16:18
vote up 3 vote down

You can use number.toFixed:

function takePercentage(x,y){
     return ((x /y) * 100).toFixed(2);
}
link|flag
Note that toFixed fails to round numbers in IE, which can combine with floating-point inaccuracies to give unexpected results. – bobince Sep 22 at 17:42
vote up 2 vote down
function takePercentage(x,y){
     n = (x /y) * 100;
     return n.toPrecision(2);
}

That should do it!

link|flag
2  
this isn't correct . 99.345.toPrecision(2) for example yields "99" – Scott Evernden Sep 22 at 15:48
toPresicion returns the number rounded to a precision of significant digits, i.e.: 123.456.toPrecision(3) == 123;, 123.456.toPrecision(2) == 120;, 123.456.toPrecision(4) == 123.5; more info here: is.gd/3zchw, you should also use the var statement to declare n, if you don't n is declared globally – CMS Sep 22 at 16:05

Your Answer

Get an OpenID
or

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