I'm trying to figure out what exactly the ECMAScript of a non-integral number is. I believe this is covered under: double-precision 64-bit binary format IEEE here. However, what might be some practical examples of formatting? For example, given the following numbers:
1.2
1.2e0
-1.2
.00005
-0.00005
Is there a function or something similar that will do a toString() or something that gives the scientific notation from the standard, such as 1.2E+0 or whatever it may be.