Last active
October 27, 2019 15:06
-
-
Save Ynote/142817dfe1b312219d592a6619312132 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 = '42e4' // => '42e4' | |
var float = parseFloat(value) // => 420000 | |
return String(float) === String(value) | |
// => false | |
// => String(float) => String(420000) => '420000' | |
// => String(value) => String('42e4') => '42e4' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment