Skip to content

Instantly share code, notes, and snippets.

@JWLangford
Created October 18, 2022 22:28
Show Gist options
  • Save JWLangford/a89f25540fa50a45f8460139642464b2 to your computer and use it in GitHub Desktop.
Save JWLangford/a89f25540fa50a45f8460139642464b2 to your computer and use it in GitHub Desktop.
const numInt = "10"
const convertedInt = +numInt
// 10
const numFloat = "10.51"
const convertedFloat = +numFloat
// 10.51
const notANumber = "chicken"
const convertedNaN = +notANumber
// NaN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment