-3

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.

jcalz
  • 264,269
  • 27
  • 359
  • 360
PRINCE
  • 1
  • 1
  • 1
    Does this answer your question? [How to convert decimal to hexadecimal in JavaScript](https://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hexadecimal-in-javascript) – AngYC Apr 28 '23 at 03:18

1 Answers1

1

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
AngYC
  • 3,051
  • 6
  • 20