Skip to content

Instantly share code, notes, and snippets.

@tyfkda
Created February 18, 2015 01:54
Show Gist options
  • Save tyfkda/98974247176767089495 to your computer and use it in GitHub Desktop.
Save tyfkda/98974247176767089495 to your computer and use it in GitHub Desktop.
Convert string to number in JavaScript
// Int string -> Number
parseInt('123.456') // => 123
// Float string -> Number
parseFloat('123.456') // => 123.456
// Any
Number('123.456') // => 123.456
// Hex string -> Number
parseInt('ffff', 16) // => 65536
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment