JS: Decimal and Hexadecimal
Anupam Majhi
1 min read
This is pretty interesting how you can convert not just standard decimal or hexadecimal numbers but any number with a base between 2 and 32. Here’s how:
var myDecimalNum = 10;
myDecimalNum.toString(16);
// result : a
var myHexNum = "a";
parseInt(myHexNum,16);
// result : 10
And not just base 16 (hex), you can do it for any base. Try different bases and have fun.
0
Subscribe to my newsletter
Read articles from Anupam Majhi directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
Anupam Majhi
Anupam Majhi
A Tech Lead by profession, a Data Enthusiast and a forever learner. Experienced in DevOps, Cloud, FullStack Development, Data Science, Machine Learning and AI.