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.00000000000000000254'
そのような機能はJavascriptに存在しますか?
parseFloat は、大きな負の科学的数値には適していません。
parseFloat('1.34E-5') => 0.0000134
parseFloat('1.34E-15') => 1.34e-15