Parsing and converting exponential values to decimal in JavaScript

前端 未结 8 1581
梦毁少年i
梦毁少年i 2020-12-05 11:19

I want to parse and convert an exponential value into a decimal using JavaScript. 4.65661287307739E-10 should give 0.000000000465661287307739. What

8条回答
  •  离开以前
    2020-12-05 12:17

    Use toFixed(number)

    eg :

    (+exponentialnumber).toFixed(8)
    
    
    2e-7 ===> 0.00000020
    

提交回复
热议问题