converter_scientific_notation_to_decimal_notation('1.34E-15')或converter_scientific_notation_to_decimal_notation(1.34E-15)
>'0.00000000000000134'
converter_scientific_notation_to_decimal_notation('2.54E-20')或converter_scientific_notation_to_decimal_notation(2.54E-20)
>'0.000000000000000000254'
Javascript中是否存在此类函数?
parseFloat不适合大的负面科学数字.
parseFloat('1.34E-5') => 0.0000134
parseFloat('1.34E-15') => 1.34e-15
Run Code Online (Sandbox Code Playgroud) javascript ×1