Created
March 10, 2013 18:45
-
-
Save noeldelgado/5129815 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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