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