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.
|
|
|||||||||
|
|
|
|
||
|
|
|
|
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. |
||
|
|
|
|
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:
|
||
|
|
|
For truncate: var intvalue = Math.floor(value); For round: var intvalue = Math.round(value); |
||
|
|
