Skip to content

Instantly share code, notes, and snippets.

@Ynote
Last active November 21, 2018 19:21
Show Gist options
  • Save Ynote/16a577c8581e1bb2e50dbbcd264ce2bf to your computer and use it in GitHub Desktop.
Save Ynote/16a577c8581e1bb2e50dbbcd264ce2bf to your computer and use it in GitHub Desktop.
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