Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
javascript
basic
010number_DecToHex.js
010number_DecToHex.js
/** * Converting decimal to hexadecimal number */ var d = 255; var h = d.toString(16); console.log(typeof h); //string console.log(h); //ff
Reload page
Preview
W3C validation
Edit Code
JS Console