Decimal and binary conversion.
Decimal and binary conversion. 2. I just wanna know how to convert binary to decimals, and decimals to binary, or hexadecimals to decimals, that's all I want.
Decimal and binary conversion.
Decimal and binary conversion. 2. I just wanna know how to convert binary to decimals, and decimals to binary, or hexadecimals to decimals, that's all I want.
You can make use of parseInt(num, radix)
global method and Number.prototype.toString(radix)
method to do that, sample below:
console.log(parseInt('ff', 16)); // Hex to decimal
console.log((128).toString(16)); // Decimal to hex