Skip to content

Instantly share code, notes, and snippets.

@Ynote
Last active October 27, 2019 15:06
Show Gist options
  • Save Ynote/142817dfe1b312219d592a6619312132 to your computer and use it in GitHub Desktop.
Save Ynote/142817dfe1b312219d592a6619312132 to your computer and use it in GitHub Desktop.
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