Skip to content

Instantly share code, notes, and snippets.

@st3v3nhunt
Created May 11, 2011 18:49
Show Gist options
  • Save st3v3nhunt/967059 to your computer and use it in GitHub Desktop.
Save st3v3nhunt/967059 to your computer and use it in GitHub Desktop.
parseInt with radix
// returns 9
parseInt('09', 10);
// returns 0!
parseInt('09');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment