2

Possible Duplicate:
How to convert decimal to hex in JavaScript?

Is there an equivalent of python's int('hex-string', 16) function in Javascript?

Community
  • 1
  • 1
leeand00
  • 24,318
  • 34
  • 129
  • 277

1 Answers1

5

You can use parseInt():

var result = parseInt("0x42", 16);  // 66
Frédéric Hamidi
  • 249,845
  • 40
  • 466
  • 467