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