10진수.toString(n)
12.toString(2) // 2진수로 1100
parseInt(n진수, n)
parseInt(1100, 2) // 2진수에서 10진수로 12
parseInt(1100, 2).toString(16); // 2진수에서 16진수로