Converts a hexadecimal string to a decimal number.
The hexadecimal string to convert.
The decimal number.
console.log(hexToDecimal('ff')); // 255console.log(hexToDecimal('0a')); // 10 Copy
console.log(hexToDecimal('ff')); // 255console.log(hexToDecimal('0a')); // 10
Converts a hexadecimal string to a decimal number.