EN
JavaScript - convert int to hex
8
points
In this short article, we would like to show how to convert integer numbers to hexadecimal numbers (hex numbers) using JavaScript.
Quick solution:
// ONLINE-RUNNER:browser;
const intNumber = 26085;
const hexNumber = intNumber.toString(16); // hex number as string
console.log(hexNumber); // 65e5