Skip to content

Instantly share code, notes, and snippets.

@noeldelgado
Created March 10, 2013 18:45
Show Gist options
  • Save noeldelgado/5129815 to your computer and use it in GitHub Desktop.
Save noeldelgado/5129815 to your computer and use it in GitHub Desktop.
// base 10 to base 2
var number_b10 = 17;
( number_b10 ).toString(2); // => "10001"
// base 2 to base 10
var number_b2 = "10001";
parseInt( number_b2, 2 ); // => 17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment