How to convert a String containing Scientific Notation to correct JavaScript number format?
Answers
Answered by
0
Pass it as a string to the Number function.
Number("4.874915326E7") //returns 48749153.26
Similar questions