I'm performing the following operation in Javascript:
0.0030 / 0.031
How can I round the result to an arbitrary number of places? What's the maximum number that a var will hold?
|
|
I'm performing the following operation in Javascript:
How can I round the result to an arbitrary number of places? What's the maximum number that a |
||||||||||
|
|
|
Modern browsers should support a method called
For older browsers, you can achieve it manually using
So to round 5.11111111 to three decimal places, you would do this:
|
|||
|
|
|
The largest positive finite value of the number type is approximately 1.7976931348623157 * 10308. ECMAScript-262 3rd ed. also defines |
||
|
|
|
|
To answer Jag's questions:
|
||
|
|