dev-serum
Search...
Ctrl
K
Data Structures & Algorithms
Coding Challenges
Codewars
8Kyu
Hex to Decimal
Previous
Check the exam
Next
Watermelon
Last updated
4 years ago
Was this helpful?
Solution
JavaScript
Copy
const hexToDec = (hexString) => parseInt(hexString, 16);
Hex to Decimal
Codewars