Javascript Convert String Representation Of Hex Value To Hex
In Javascript, how do I convert a string representation of a hex value into it's hex representation ? What I have returning from a checksum routine is a string value 'FE'. What I
Solution 1:
like this
var hex = parseInt("FF", 16);
Post a Comment for "Javascript Convert String Representation Of Hex Value To Hex"