Link Search Menu Expand Document

Number.ToExponential Method

Explanation
Call format var text = num.ToExponential( [ fractionDigits ] )
Return value
Arguments integer fractionDigits
Exception Func-4
Example of use
var num = new Number;
num.Value = 5678.12345;
print(num.ToExponential(3), "\n");
 
--- Output result ---
5.678e+003
Related item