Contact: aviboots(AT)netvision.net.il
41,160 questions
53,652 answers
573 users
const number = 255; const base = 16; // Convert to hexadecimal (base 16) let result = number.toString(base).toUpperCase(); console.log(result); /* run: FF */