HEAD
Complete the function which converts hex number (given as a string) to a decimal number.
No examples
function hexToDec(hexString){
return parseInt(hexString, 16)
}
Try it yourself - CodeWars
Complete the function which converts hex number (given as a string) to a decimal number.
No examples
function hexToDec(hexString){
return parseInt(hexString, 16)
}
Try it yourself - CodeWars