Contact: aviboots(AT)netvision.net.il
39,894 questions
51,825 answers
573 users
const hex = "A30C"; console.log(parseInt(hex, 16)); /* run: 41740 */
const hex = "FD"; const dec = parseInt(hex, 16); console.log(dec); /* run: 253 */