Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript Convert Decimal to Hexadecimal</title> </head> <body> <script> // Simple function to convert decimal to hexadecimal function dec2Hex(dec) { return Math.abs(dec).toString(16); } // Testing some values document.write(dec2Hex(960)); // Print: 3c0 document.write("<br>"); document.write(dec2Hex(255)); // Print: ff document.write("<br>"); document.write(dec2Hex(15)); // Print: f </script> </body> </html>