Last active
November 20, 2018 10:53
-
-
Save Ynote/4e387d79a55c0ecf0ce74a951a9084bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var value = '4200000000000000000000' // => '4200000000000000000000' | |
var float = parseFloat(value) // => 4.2e+21 | |
return String(float) === String(value) | |
// => false | |
// => String(float) => String(4.2e+21) => '4.2e+21' | |
// => String(value) => String('4200000000000000000000') => '4200000000000000000000' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment