-
-
Save graciano/262e6365af2c3d64f5df to your computer and use it in GitHub Desktop.
Convert From/To Binary/Decimal/Hexadecimal in JavaScript
This file contains 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
/** | |
* Conver From/To Binary/Decimal/Hexadecimal in JavaScript | |
* Matheus Graciano <graciano.dev@gmail>, Lucas Gonzalez <[email protected]> | |
* | |
* Adapted from | |
* https://gist.github.com/faisalman/4213592 | |
* | |
* Copyright 2012-2015, Faisalman <[email protected]> | |
* Licensed under The MIT License | |
* http://www.opensource.org/licenses/mit-license | |
*/ | |
(function(){ | |
var ConvertBase = function (num, length) { | |
return { | |
from : function (baseFrom) { | |
return { | |
to : function (baseTo) { | |
if(length){ | |
var result = parseInt(num, baseFrom).toString(baseTo); | |
while(result.length < length) | |
result = "0"+result; | |
return result; | |
} | |
return parseInt(num, baseFrom).toString(baseTo); | |
} | |
}; | |
} | |
}; | |
}; | |
// binary to decimal | |
ConvertBase.bin2dec = function (num, length) { | |
return ConvertBase(num, length).from(2).to(10); | |
}; | |
// binary to hexadecimal | |
ConvertBase.bin2hex = function (num, length) { | |
return ConvertBase(num, length).from(2).to(16); | |
}; | |
// decimal to binary | |
ConvertBase.dec2bin = function (num, length) { | |
return ConvertBase(num, length).from(10).to(2); | |
}; | |
// decimal to hexadecimal | |
ConvertBase.dec2hex = function (num, length) { | |
return ConvertBase(num, length).from(10).to(16); | |
}; | |
// hexadecimal to binary | |
ConvertBase.hex2bin = function (num, length) { | |
return ConvertBase(num, length).from(16).to(2); | |
}; | |
// hexadecimal to decimal | |
ConvertBase.hex2dec = function (num, length) { | |
return ConvertBase(num, length).from(16).to(10); | |
}; | |
this.ConvertBase = ConvertBase; | |
})(this); | |
/* | |
* Usage example: | |
* ConvertBase.bin2dec('111'); // '7' | |
* ConvertBase.dec2hex('42'); // '2a' | |
* ConvertBase.hex2bin('f8'); // '11111000' | |
* ConvertBase.dec2bin('22'); // '10110' | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@lukegonzalez seu lindo