In AS3, from a division I get a number like this one: 0.9130406010219044. Is there any way to reduce the number of decimals (aside from multiplying that number for one million)? Is there a way to reduce the numbers BEFORE the division is performed?
|
Got the following function from this link, which rounds to an arbitrary number of decimals:
Note: I slightly changed the function definition by adding types. See the link for explanation and original source code. Also made it return |
|||||||||||||
|
|
Take a look at NumberFormatter.fractionalDigits Or, if you're working in Flex: mx:NumberFormatter.precision / s:NumberFormatter.fractionalDigits |
|||
|
|
|
Try some of the answers here on for size: How to deal with Number precision in Actionscript? If you use a NumberFormatter, make sure to specify rounding (it's most likely you'll want nearest). |
|||
|
AS3 Documentation: Number class |
|||||||||||
|
|
If you just want to display the result (you didn't specify) then a simple bit of String manipulation will yield the fastest result:
|
|||
|
|