vote up 6 vote down star

There are several different methods for converting floating point numbers to Integers in JavaScript. My question is what method gives the best performance, is most compatible, or is considered the best practice?

Here are a few methods that I know of:

var a = 2.5;
window.parseInt(a); // 2
Math.floor(a);      // 2
a | 0;              // 2

I'm sure there are others out there. Suggestions?

flag

8 Answers

vote up 17 vote down check

According to this website:

parseInt is occasionally used as a means of turning a floating point number into an integer. It is very ill suited to that task because if its argument is of numeric type it will first be converted into a string and then parsed as a number...

For rounding numbers to integers one of Math.round, Math.ceil and Math.floor are preferable...

link|flag
vote up -3 vote down

parseInt() is probably the best one. a | 0 doesn't do what you really want (it just assigns 0 if a is an undefined or null value, which means an empty object or array passes the test), and Math.floor works by some type trickery (it basically calls parseInt() in the background).

link|flag
Are you sure you don't mean a || 0? A single | is a bitwise OR operator as far as I know, as opposed to the boolean OR operator. I'm not sure why it works, but try it in Firebug. – Mathew Byrne Sep 25 '08 at 4:01
Yes, this is a bitwise operation. – Jason Bunting Sep 25 '08 at 4:01
Also, where do you get your information about how Math.floor works? – Jason Bunting Sep 25 '08 at 4:03
You're right, a||0 is logical or. That means that a|0 is working in the exact same manner as Math.floor. My info about Math.floor comes from digging into the internals of spidermonkey for various personal projects. – Jeff Hubbard Sep 25 '08 at 4:12
Oh, okay - so for that implementation, that is how Math.floor works, not necessarily every implementation. – Jason Bunting Sep 25 '08 at 17:17
vote up 3 vote down

You can use Number(a).toFixed(0);

Or even just a.toFixed(0);

Edit:

That's rounding to 0 places, slightly different than truncating, and as someone else suggested, toFixed returns a string, not a raw integer. Useful for display purposes.

var num = 2.7;  // typeof num is "Number"
num.toFixed(0) == "3"
link|flag
FYI: The Number constructor runs very slow, so you wouldn't want to use that one if performance was important. – Jason Bunting Sep 25 '08 at 4:05
Good to know! I edited to add the 2nd a.toFixed(0); form when I remembered javascript primitives still have functions. – davenpcj Sep 25 '08 at 4:08
Well, to be honest...they don't have methods. The interpreter first converts the primitive to a Number object, and then calls the method on it. This simply happens invisibly for you. So, your second example implicitly does the same as the first. :( – Jason Bunting Sep 25 '08 at 4:27
Not only that, but if a is 2.5, a.toFixed(0) rounds it up to 3. – Jason Bunting Sep 25 '08 at 4:30
That's by design. w3schools.com/jsref/jsref_tofixed.asp, but I'll edit to reflect that. – davenpcj Sep 25 '08 at 14:13
vote up 4 vote down
var i = parseInt(n, 10);

If you don't specify a radix values like '010' will be treated as octal (and so the result will be 8 not 10).

link|flag
Oh wow! Good to know ;) – Mathew Byrne Sep 25 '08 at 4:16
vote up 1 vote down

To everyone suggesting parseInt: read the original post again, carefully. a is a numeric variable, not a string.

link|flag
vote up 0 vote down

The question appears to be asking specifically about converting from a float to an int. My understanding is that the way to do this is to use toFixed. So...

var myFloat = 2.5;
var myInt = myFloat.toFixed(0);

Does anyone know if Math.floor() is more or less performant than Number.toFixed()?

link|flag
vote up 2 vote down

The answer has already been given but just to be clear.

Use the Math library for this. round, ceil or floor functions.

parseInt is for converting a string to an int which is not what is needed here

toFixed is for converting a float to a string also not what is needed here

Since the Math functions will not be doing any conversions to or from a string it will be faster than any of the other choices which are wrong anyway.

link|flag
vote up -1 vote down

you could also do it this way:

var string = '1';
var integer = a * 1;
link|flag
first, you have a typo ("a" should be "string"), and second, that just converts a string to a number, not an integer. Try changing the string to '1.1'. – Jason S Sep 22 at 23:45

Your Answer

Get an OpenID
or

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