4

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
  • 25,510
  • 39
  • 140
  • 297

1 Answers1

7

You can use parseInt():

var result = parseInt("0x42", 16);  // 66
Frédéric Hamidi
  • 258,201
  • 41
  • 486
  • 479