Function hexToDecimal

  • Converts a hexadecimal string to a decimal number.

    Parameters

    • hex: string

      The hexadecimal string to convert.

    Returns number

    The decimal number.

    Example

    console.log(hexToDecimal('ff')); // 255
    console.log(hexToDecimal('0a')); // 10