how can i divide value that has power of 10 in javascript?
For example:
-5x10^-3 * 3x10^-9
is there a way to do this like a
Math.powof(5,-3)
something like that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Why not use exponent notation?
which is equivalent to:
Note that when dealing with small decimals, javascript arithmatic may not be exact, e.g.
but