MCPcopy Index your code
hub / github.com/TheAlgorithms/JavaScript / decimalToHex

Function decimalToHex

Conversions/DecimalToHex.js:19–26  ·  view source on GitHub ↗
(num)

Source from the content-addressed store, hash-verified

17}
18
19function decimalToHex(num) {
20 const hexOut = []
21 while (num > 15) {
22 hexOut.unshift(intToHex(num % 16))
23 num = Math.floor(num / 16)
24 }
25 return intToHex(num) + hexOut.join('')
26}
27
28export { decimalToHex }

Callers 1

Calls 1

intToHexFunction · 0.85

Tested by

no test coverage detected