Link to home
Start Free TrialLog in
Avatar of Loganathan Natarajan
Loganathan NatarajanFlag for India

asked on

conversion of exponent values

When I multiply the values in JavaScript, it generates with the exponent results. How can I get the value like something like this, 0.000000034?

Ex:
alert(0.000034/1000);    // Result = 3.4e-8

but it should alert
(0.000034/1000) = 0.000000034

How to do?
Avatar of aherps
aherps
Flag of Australia image

You could do:
alert(Integer.toString(0.000034/1000));
Avatar of Loganathan Natarajan

ASKER

there is an error,  "Integer is undefined "
ASKER CERTIFIED SOLUTION
Avatar of David H.H.Lee
David H.H.Lee
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial