Contact: aviboots(AT)netvision.net.il
40,759 questions
53,131 answers
573 users
const num = 255; const base = 16; // Convert to hexadecimal (base 16) let result: string = num.toString(base).toUpperCase(); console.log(result); /* run: "FF" */