Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ac1c3 commit 8a356cdCopy full SHA for 8a356cd
1 file changed
Conversions/DecimalToHex.js
@@ -16,7 +16,7 @@ function decimalToHex(num){
16
hex_out.push(intToHex(num%16));
17
num = Math.floor(num / 16);
18
}
19
- return intToHex(num) + return hex_out.join("");
+ return intToHex(num) + hex_out.join("");
20
21
22
// test cases
0 commit comments