fixed alert

This commit is contained in:
Alex
2019-02-24 15:06:59 -06:00
parent 97ac1c3d24
commit 8a356cd839

View File

@ -16,7 +16,7 @@ function decimalToHex(num){
hex_out.push(intToHex(num%16)); hex_out.push(intToHex(num%16));
num = Math.floor(num / 16); num = Math.floor(num / 16);
} }
return intToHex(num) + return hex_out.join(""); return intToHex(num) + hex_out.join("");
} }
// test cases // test cases