convert hex value to integer javascript code example
Example 1: convert hexadecimal to decimal js
yourNumber = parseInt(hexString, 16);
Example 2: hex string to int javascript
console.log(hex.toString(16));
yourNumber = parseInt(hexString, 16);
console.log(hex.toString(16));