Complete the function which converts hex number (given as a string) to a decimal number.
Hex to Decimal
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
function hexToDec(hexString){
return parseInt(hexString, 16);
}
The
parseInt()
function parses a string argument and returns an integer of the specified radix (the base in mathematical numeral systems).https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt?retiredLocale=uk