Skip to content

Instantly share code, notes, and snippets.

@defel
Created June 30, 2010 20:09
Show Gist options
  • Save defel/459151 to your computer and use it in GitHub Desktop.
Save defel/459151 to your computer and use it in GitHub Desktop.
octalStr='377';
num = parseInt(octalStr,8); // num now holds 255 hexStr='7F';
num = parseInt(hexStr,16); // num now holds 127
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment