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