hexToDecimal.js (8kyu 69)
Codewars 알고리즘 풀이
Problem
- Complete the function which converts hex number (given as a string) to a decimal number.
- 문자열로 주어진 16진수를 10진수로 변환한다.
Solution 01
function hexToDecimal(hexString) {
return parseInt(haxString, 16);
}
hexToDecimal('1'); // 1
hexToDecimal('a'); // 10
hexToDecimal('10'); // 16
hexToDecimal('FF'); // 255
hexToDecimal('-C'); // -12
parseInt()
메소드문자열을 구문 분석하고, 정수를 반환한다.