Skip to content

Commit 8a356cd

Browse files
committed
fixed alert
1 parent 97ac1c3 commit 8a356cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Conversions/DecimalToHex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function decimalToHex(num){
1616
hex_out.push(intToHex(num%16));
1717
num = Math.floor(num / 16);
1818
}
19-
return intToHex(num) + return hex_out.join("");
19+
return intToHex(num) + hex_out.join("");
2020
}
2121

2222
// test cases

0 commit comments

Comments
 (0)