# 二进制转十六进制

bin2hex(number)

# 说明

进制转换

# params

  1. {number}: 需要转换的数

# return

{string}: 返回转换后十六进制数的字串形式

# eg

console.assert(bin2hex(2) === '2')
console.assert(bin2hex(10000) === '10')
1
2
Last Updated: 4/21/2021, 5:05:43 AM