vote up 2 vote down star

I'd like to convert a float to an int in Javascript. Actually, I'd like to know how to do BOTH of the standard convertions: by truncating and by rounding. And efficiently, not via converting to a string and parsing.

flag

1  
If you didn't know it, all numbers in javascript are floats. From the specification: – some Feb 28 at 2:40
4.3.20 Number Type: The type Number is a set of values representing numbers. In ECMAScript, the set of values represents the doubleprecision 64-bit format IEEE 754 values including the special “Not-a-Number” (NaN) values, positive infinity, and negative infinity. – some Feb 28 at 2:41
Yes, Javascript does not have a distinct "integer" type, but it is still not uncommon to need to do this conversion. For instance, in my application users typed in a number (possibly including cents). I had to truncate the cents and display w/ commas. Step 1 was to convert to int. – mcherm Feb 28 at 15:40

4 Answers

vote up 11 vote down check
var intvalue = Math.floor( floatvalue );
var intvalue = Math.ceil( floatvalue ); 
var intvalue = Math.round( floatvalue );

Math object reference

link|flag
vote up 1 vote down

In your case, when you want a string in the end (in order to insert commas), you can also just use the Number.toFixed() function, however, this will perform rounding.

link|flag
vote up 1 vote down

Note: You cannot use Math.floor() as a replacement for truncate, because Math.floor(-3.1) = 4 and not 3!

A correct replacement for truncate would be:

function truncate(_value)
{
  if (_value<0) return Math.ceil(_value);
  else return Math.floor(_value);
}
link|flag
That depends on the desired behavior for negative numbers. Some uses need negative numbers to map to the more negative value (-3.5 -> -4) and some require them to map to the smaller integer (-3.5 -> -3). The former is normally called "floor". The word "truncate" is often used to describe either behavior. In my case, I was only going to feed it negative numbers. But this comment is a useful warning for those who DO care about negative number behavior. – mcherm Oct 16 at 14:35
vote up 0 vote down

For truncate: var intvalue = Math.floor(value);

For round: var intvalue = Math.round(value);

link|flag

Your Answer

Get an OpenID
or

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