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