进制转换工具

// 这里的进制转换的原理比较简单,其实就一行代码
let radixConvert = (num, fromRadix, toRadix) => parseInt(num, fromRadix).toString(toRadix);
// 转换结果就在下面了