Number toExponential()
syntax: |
number.toExponential(fractionDigits) |
where: |
fractionDigits - the digits after the significand's decimal point.
|
return: |
string - A string representation of this number in exponential notation.
|
description: |
This method returns a string containing the number represented in exponential notation with one digit before the significand's decimal point and fractionDigits digits after the significand's decimal point.
|