Last active
November 21, 2018 19:21
-
-
Save Ynote/16a577c8581e1bb2e50dbbcd264ce2bf 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 // => 420000 | |
var float = parseFloat(value) // => 420000 | |
return String(float) === String(value) | |
// => true | |
// => String(float) => String(420000) => '420000' | |
// => String(value) => String(420000) => '420000' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment