nodejs hex to decimal 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);