Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 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" */